如何使用IP Alias?
发布时间:2006-10-14 8:47:18   收集提供:gaoqian
用 IP Alias 可以让你收发其他 IP 的讯息 彷佛就像是另插一张网路卡一样, 
当然, 你所 alias 的 IP 必须是你 localnet 有的. 

首先读读 man ifconfig 

ifconfig {interface} {ip_addr_alias} netmask 255.255.255.255 alias 

范例 : (2.1.x/2.2.x) 
ifconfig ed0 140.113.122.1 netmask 255.255.255.255 alias 

范例 : (3.0-CURRENT) 
ifconfig ed0 inet 140.113.122.1 netmask 255.255.255.255 alias 

要去掉 alias : (就是把最后改为 -alias) 
ifconfig {interface} {ip_addr_alias} netmask 255.255.255.255 -alias 

要想在开机时就自动设定IP Alias,需要在/etc/rc.conf下加入: 
ifconfig_ed0_alias0="inet xxx.xxx.xxx.xxx netmask 255.255.255.xxx" 
                          ^^^^^^^^^^^^^^^ 
                          这里是你希望使用的IP地址。 
通过这种方式你可以给一块网卡设定很多IP地址。 
 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50