pavement

IP addresses, multiple

From FreeBSDwiki
(Difference between revisions)
Jump to: navigation, search
m
(sp)
Line 9: Line 9:
 
   ifconfig rl0 alias 192.168.0.57 netmask 0xffffffff
 
   ifconfig rl0 alias 192.168.0.57 netmask 0xffffffff
  
If you want the virtual interaface to come up when the computer boots, you'll ''need'' to place the line in [[rc.conf]], although if you're just changing things on the fly (for testing etc) and won't mind that the new address goes bye-bye on a reboot, just doing the command line ''ifconfig'' with alias is enough. This is more easily done through [[webmin]], and can come in real handy for serving different webpages from the same machine.
+
If you want the virtual interface to come up when the computer boots, you'll ''need'' to place the line in [[rc.conf]], although if you're just changing things on the fly (for testing etc) and won't mind that the new address goes bye-bye on a reboot, just doing the command line ''ifconfig'' with alias is enough. This is more easily done through [[webmin]], and can come in real handy for serving different webpages from the same machine.
  
 
Note that running multiple IPs on different nets will put your interface into promiscuous mode. (ifconfig or ip link may report this).  
 
Note that running multiple IPs on different nets will put your interface into promiscuous mode. (ifconfig or ip link may report this).  

Revision as of 03:15, 30 January 2006

So...you've got one server, and it needs to have multiple IPs. Easy, use NIC aliasing:

In /etc/rc.conf:

 ifconfig_rl0_alias0="192.168.0.57 netmask 0xffffffff"

At the command line:

 ifconfig rl0 alias 192.168.0.57 netmask 0xffffffff

If you want the virtual interface to come up when the computer boots, you'll need to place the line in rc.conf, although if you're just changing things on the fly (for testing etc) and won't mind that the new address goes bye-bye on a reboot, just doing the command line ifconfig with alias is enough. This is more easily done through webmin, and can come in real handy for serving different webpages from the same machine.

Note that running multiple IPs on different nets will put your interface into promiscuous mode. (ifconfig or ip link may report this).

Personal tools