<?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: Remove a virtual interface in Solaris</title>
	<atom:link href="http://www.tech-recipes.com/rx/139/remove-a-virtual-interface-in-solaris/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech-recipes.com/rx/139/remove-a-virtual-interface-in-solaris/</link>
	<description>Computer and technology tutorials and guides</description>
	<lastBuildDate>Sat, 21 Nov 2009 22:16:28 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: </title>
		<link>http://www.tech-recipes.com/rx/139/remove-a-virtual-interface-in-solaris/comment-page-1/#comment-2939</link>
		<dc:creator></dc:creator>
		<pubDate>Sat, 24 Jun 2006 01:15:47 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-2939</guid>
		<description>On Solaris 8, you can remove the virtual interface by using removeif option of the ifconfig command :

ifconfig &lt;physical_interface&gt; removeif &lt;logical_address&gt;

for eg.:

$ ifconfig -a
lo0: flags=1000849&lt;UP,LOOPBACK,RUNNING,MULTICAST,IPv4&gt; mtu 8232 index 1
        inet 127.0.0.1 netmask ff000000
bge0: flags=1000843&lt;UP,BROADCAST,RUNNING,MULTICAST,IPv4&gt; mtu 1500 index 3
        inet 1.2.31.216 netmask fffff800 broadcast 1.2.31.255
bge0:1: flags=1000843&lt;UP,BROADCAST,RUNNING,MULTICAST,IPv4&gt; mtu 1500 index 3
        inet 1.2.31.24 netmask fffff800 broadcast 1.2.31.255

# ifconfig bge0 removeif 1.2.31.26

$ ifconfig -a
lo0: flags=1000849&lt;UP,LOOPBACK,RUNNING,MULTICAST,IPv4&gt; mtu 8232 index 1
        inet 127.0.0.1 netmask ff000000
bge0: flags=1000843&lt;UP,BROADCAST,RUNNING,MULTICAST,IPv4&gt; mtu 1500 index 3
        inet 1.2.31.216 netmask fffff800 broadcast 1.2.31.255</description>
		<content:encoded><![CDATA[<p>On Solaris 8, you can remove the virtual interface by using removeif option of the ifconfig command :</p>
<p>ifconfig &lt;physical_interface&gt; removeif &lt;logical_address&gt;</p>
<p>for eg.:</p>
<p>$ ifconfig -a<br />
lo0: flags=1000849&lt;UP,LOOPBACK,RUNNING,MULTICAST,IPv4&gt; mtu 8232 index 1<br />
        inet 127.0.0.1 netmask ff000000<br />
bge0: flags=1000843&lt;UP,BROADCAST,RUNNING,MULTICAST,IPv4&gt; mtu 1500 index 3<br />
        inet 1.2.31.216 netmask fffff800 broadcast 1.2.31.255<br />
bge0:1: flags=1000843&lt;UP,BROADCAST,RUNNING,MULTICAST,IPv4&gt; mtu 1500 index 3<br />
        inet 1.2.31.24 netmask fffff800 broadcast 1.2.31.255</p>
<p># ifconfig bge0 removeif 1.2.31.26</p>
<p>$ ifconfig -a<br />
lo0: flags=1000849&lt;UP,LOOPBACK,RUNNING,MULTICAST,IPv4&gt; mtu 8232 index 1<br />
        inet 127.0.0.1 netmask ff000000<br />
bge0: flags=1000843&lt;UP,BROADCAST,RUNNING,MULTICAST,IPv4&gt; mtu 1500 index 3<br />
        inet 1.2.31.216 netmask fffff800 broadcast 1.2.31.255</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jhavard</title>
		<link>http://www.tech-recipes.com/rx/139/remove-a-virtual-interface-in-solaris/comment-page-1/#comment-693</link>
		<dc:creator>jhavard</dc:creator>
		<pubDate>Sat, 18 Sep 2004 01:26:32 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-693</guid>
		<description>According to the &lt;strong&gt;&lt;font color=&quot;orange&quot;&gt;ifconfig man page&lt;/font&gt;&lt;/strong&gt;:

&lt;code&gt;
     To delete a logical interface,  simply  name  the  interface
     specifying  an address of  0, after ensuring that the inter-
     face has been marked as &quot;down&quot;. For example, the command&#58;

     ifconfig  le0&#58;1 0 down
     will delete the logical interface  le0&#58;1.
&lt;/code&gt;


The previous comment is correct that unplumbing a logical interface in Solaris will unplumb the physical interface, as plumbing is a &quot;physical&quot; matter.</description>
		<content:encoded><![CDATA[<p>According to the <strong><font color="orange">ifconfig man page</font></strong>:</p>
<p><code><br />
     To delete a logical interface,  simply  name  the  interface<br />
     specifying  an address of  0, after ensuring that the inter-<br />
     face has been marked as &quot;down&quot;. For example, the command&#58;</p>
<p>     ifconfig  le0&#58;1 0 down<br />
     will delete the logical interface  le0&#58;1.<br />
</code></p>
<p>The previous comment is correct that unplumbing a logical interface in Solaris will unplumb the physical interface, as plumbing is a &#8220;physical&#8221; matter.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.tech-recipes.com/rx/139/remove-a-virtual-interface-in-solaris/comment-page-1/#comment-136</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sat, 27 Mar 2004 03:03:50 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-136</guid>
		<description>to my experience, unplumbing a virtual interface will remove the real interface too.
so it would be wise to just bring it down instead of unplumbing.</description>
		<content:encoded><![CDATA[<p>to my experience, unplumbing a virtual interface will remove the real interface too.<br />
so it would be wise to just bring it down instead of unplumbing.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
