Debian双网卡配置

Posted surplus

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Debian双网卡配置相关的知识,希望对你有一定的参考价值。

1.单网卡配置

/etc/network/interfaces

auto eth0
#iface eth0 inet dhcp(默认是DHCP被注释掉)
iface eth0 inet static
address 192.168.8.110
netmask 255.255.255.0
gateway 192.168.8.1

2.双网卡配置

/etc/network/interfaces

auto eth0
#iface eth0 inet dhcp(默认是DHCP被注释掉)
iface eth0 inet static
address 192.168.8.110
netmask 255.255.255.0
gateway 192.168.8.1

auto eth1
iface eth1 inet static
address 192.168.0.110
netmask 255.255.255.0
gateway 192.168.8.1

(注意eth1没有gateway )

3.单网卡配置多ip

修改/etc/network/interfaces

auto eth0
iface eth0 inet static
address192.168.8.110
netmask 255.255.255.0
gateway 192.168.8.1

auto eth0:0
iface eth0:0 inet static
address 192.168.0.110
netmask 255.255.255.0

修改/etc/network/ifstate

lo=lo
eth0=eth0
eth0:0=eth0:0

如果没有/etc/network/ifstate,手工创建
/etc/init.d/networking restart
注意,eth0:0没有gateway,此方法测试有效

以上是关于Debian双网卡配置的主要内容,如果未能解决你的问题,请参考以下文章

Linux服务器双网卡双IP和单网卡双IP配置方法(Debian/Ubuntu)

[01] Debian 10 配置多网卡绑定及VLAN接口

debian9怎么配置IP地址

Debian系列网卡配置详解

Debian怎么配置网卡(IP)

Debian 8 网卡手动配置