<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: NetworkManager and virtual interfaces</title>
	<atom:link href="http://mihai.ibanescu.net/networkmanager-and-virtual-interfaces/feed" rel="self" type="application/rss+xml" />
	<link>http://mihai.ibanescu.net/networkmanager-and-virtual-interfaces</link>
	<description>Mihai&#039;s few cents</description>
	<lastBuildDate>Sun, 02 Oct 2011 17:24:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Tip: Configuring network aliases with NetworkManager on Fedora 14 &#171; EdVoncken.NET</title>
		<link>http://mihai.ibanescu.net/networkmanager-and-virtual-interfaces/comment-page-1#comment-1518</link>
		<dc:creator>Tip: Configuring network aliases with NetworkManager on Fedora 14 &#171; EdVoncken.NET</dc:creator>
		<pubDate>Mon, 04 Apr 2011 11:49:23 +0000</pubDate>
		<guid isPermaLink="false">http://mihai.ibanescu.net/?p=18#comment-1518</guid>
		<description>[...] on a comment by Cristiano, I added a script to NetworkManager that would take care of configuring any network aliases that [...]</description>
		<content:encoded><![CDATA[<p>[...] on a comment by Cristiano, I added a script to NetworkManager that would take care of configuring any network aliases that [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cristiano</title>
		<link>http://mihai.ibanescu.net/networkmanager-and-virtual-interfaces/comment-page-1#comment-1473</link>
		<dc:creator>Cristiano</dc:creator>
		<pubDate>Sun, 15 Aug 2010 12:50:54 +0000</pubDate>
		<guid isPermaLink="false">http://mihai.ibanescu.net/?p=18#comment-1473</guid>
		<description>Thank you, I&#039;m using Fedora 12 also. Just as a contribution I made de code more generic (supporting more interfaces and aliases):

&lt;blockquote&gt;
&lt;pre&gt;
#!/bin/bash

iface=&quot;$1&quot;
shift

action=&quot;$1&quot;
shift

if [ &quot;$action&quot; = &quot;up&quot; ]; then
        for ALIAS in /etc/sysconfig/network-scripts/ifcfg-$iface:*; do
                ALIAS=`echo $ALIAS &#124; cut -d: -f 2`
                /sbin/ifup $iface:$ALIAS
        done
fi
&lt;/pre&gt;
&lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<p>Thank you, I&#8217;m using Fedora 12 also. Just as a contribution I made de code more generic (supporting more interfaces and aliases):</p>
<blockquote>
<pre>
#!/bin/bash

iface="$1"
shift

action="$1"
shift

if [ "$action" = "up" ]; then
        for ALIAS in /etc/sysconfig/network-scripts/ifcfg-$iface:*; do
                ALIAS=`echo $ALIAS | cut -d: -f 2`
                /sbin/ifup $iface:$ALIAS
        done
fi
</pre>
</blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>By: apexwm</title>
		<link>http://mihai.ibanescu.net/networkmanager-and-virtual-interfaces/comment-page-1#comment-1405</link>
		<dc:creator>apexwm</dc:creator>
		<pubDate>Tue, 16 Feb 2010 02:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://mihai.ibanescu.net/?p=18#comment-1405</guid>
		<description>Thank you very much.  Even in Fedora 12, this fix still works GREAT.  I tried setting up multiple IP aliases with NetworkManager, however they did not work correctly.  With your method, you get the real IP alias devices created.</description>
		<content:encoded><![CDATA[<p>Thank you very much.  Even in Fedora 12, this fix still works GREAT.  I tried setting up multiple IP aliases with NetworkManager, however they did not work correctly.  With your method, you get the real IP alias devices created.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flo</title>
		<link>http://mihai.ibanescu.net/networkmanager-and-virtual-interfaces/comment-page-1#comment-1383</link>
		<dc:creator>flo</dc:creator>
		<pubDate>Mon, 07 Dec 2009 14:44:53 +0000</pubDate>
		<guid isPermaLink="false">http://mihai.ibanescu.net/?p=18#comment-1383</guid>
		<description>Hey,

Thanks for sharing this tip, it really proves helpful.

Did the same on an Ubuntu system (8.10), just added:

* to /etc/network/interfaces:

auto eth0:0
iface eth0:0 inet static
        address 192.168.0.2
        netmask 255.255.255.0
        network 192.168.0.0
        broadcast 192.168.0.255

* your procedure

And it worked

Thanks

Florent</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>Thanks for sharing this tip, it really proves helpful.</p>
<p>Did the same on an Ubuntu system (8.10), just added:</p>
<p>* to /etc/network/interfaces:</p>
<p>auto eth0:0<br />
iface eth0:0 inet static<br />
        address 192.168.0.2<br />
        netmask 255.255.255.0<br />
        network 192.168.0.0<br />
        broadcast 192.168.0.255</p>
<p>* your procedure</p>
<p>And it worked</p>
<p>Thanks</p>
<p>Florent</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NetworkManager et les interfaces virtuelles - even.IT</title>
		<link>http://mihai.ibanescu.net/networkmanager-and-virtual-interfaces/comment-page-1#comment-8</link>
		<dc:creator>NetworkManager et les interfaces virtuelles - even.IT</dc:creator>
		<pubDate>Fri, 15 May 2009 13:30:28 +0000</pubDate>
		<guid isPermaLink="false">http://mihai.ibanescu.net/?p=18#comment-8</guid>
		<description>[...] Cette méthode est basée sur un billet de Mihai Ibanescu. [...]</description>
		<content:encoded><![CDATA[<p>[...] Cette méthode est basée sur un billet de Mihai Ibanescu. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

