欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

FreeBSD, Debian, CentOS一个网卡绑定多个IP

程序员文章站 2022-07-07 10:54:37
1. FreeBSD: 配置/etc/rc.conf ifconfig_interface="inet 192.168.1.5 255.255.255.0" ifconfig_interface_alias0="inet 192.168.1.6 255.255.255.0&q... 08-09-08...

1. freebsd:

配置/etc/rc.conf

ifconfig_interface="inet 192.168.1.5 255.255.255.0"

ifconfig_interface_alias0="inet 192.168.1.6 255.255.255.0"

注意interface是网卡设备名.

2. debian

/etc/network/interfaces

auto eth0
iface eth0 inet static
address 192.168.1.145

netmask 255.255.255.0

network 192.168.1.0
gateway 192.168.1.1

另外一个ip

auto eth0:1
iface eth0:1 inet static
address 192.168.1.146

netmask 255.255.255.0

network 192.168.1.0
gateway 192.168.1.1

3.centos:

/etc/sysconfig/network-scripts/ifcfg-eth0

device=eth0
onboot=yes
hwaddr=00:0c:29:16:39:5f
netmask=255.255.255.0
ipaddr=192.168.1.147
gateway=192.168.1.1
type=ethernet

绑定另外一个ip, 创建另外一个文件, ifcfg-eth0

device=eth0 // 注意还是eth0, 指示此ip绑定到eth0
onboot=yes
hwaddr=00:0c:29:16:39:5f
netmask=255.255.255.0
ipaddr=192.168.1.148
gateway=192.168.1.1
type=ethernet