Community Page
- www.tech-recipes.com/ Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- hey
- Thanks mate, Just what I was looking for. It seemed to be a different way of doing things in Leopard than previous versions. Cheers, Mitch
- thanks, i couldnt remember.
- I did this in Garage band, but if forced me to trip the song to 8 seconds in order to send it to itunes ringtones - any ideas on this? Using the new 3GS.
- Please dont remove this Folder, It occupies only 315 MB and is useful for your Office 2003.... SRIKANTH
Tech-Recipes
Cookbook of Tech TutorialsRemove a virtual interface in Solaris | Solaris networking | Tech-Recipes
Started by qdideas · 9 months ago
5 years ago
so it would be wise to just bring it down instead of unplumbing.
4 years ago
To delete a logical interface, simply name the interface
specifying an address of 0, after ensuring that the inter-
face has been marked as "down". For example, the command:
ifconfig le0:1 0 down
will delete the logical interface le0:1.
The previous comment is correct that unplumbing a logical interface in Solaris will unplumb the physical interface, as plumbing is a "physical" matter.
3 years ago
ifconfig <physical_interface> removeif <logical_address>
for eg.:
$ ifconfig -a
lo0: flags=1000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4> mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
bge0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 1.2.31.216 netmask fffff800 broadcast 1.2.31.255
bge0:1: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> 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<UP,LOOPBACK,RUNNING,MULTICAST,IPv4> mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
bge0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 1.2.31.216 netmask fffff800 broadcast 1.2.31.255