linux下如何让两个网口共用一个ip

linux下如何让两个网口共用一个ip,第1张

也可以叫共用一个IP吧。。我想

cat "/etc/modules.conf" 中加上

alias bond0 bonding

options bond0 miimon=100 mode=0

其中mode=0为负载平衡,

mode=1为备份时。。我试过把网线拨掉一根也完全正常。。因为另外一台一直在ping

[root@shlinux root]# cat /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0

ONBOOT=yes

IPADDR=192.168.7.112

[root@shlinux root]# cat /etc/sysconfig/network-scripts/ifcfg-eth1

DEVICE=eth1

ONBOOT=yes

IPADDR=192.168.7.112

[root@shlinux root]# cat /etc/sysconfig/network-scripts/ifcfg-bond0

DEVICE=bond0

BOOTPROTO=static

IPADDR=192.168.7.112

NETMASK=255.255.255.0

NETWORK=192.168.7.0

BROADCAST=192.168.7.255

ONBOOT=yes

在"/etc/rc.d/rc.local"中加如下两句

ifenslave bond0 eth0 eth1

service network restart别忘了这句,否则eth1就会启动不了,兄弟们可能会发现在启动的时候会有eth1失败的提示,不过有了这句之後会发现後OK了。

1、这个问题和linux系统没关系

2、用webserver的虚拟主机vhost

3、apache实例

<VirtualHost 172.16.1.2>

DocumentRoot /opt/www1

ServerName dns1

.......

</VirtualHost>

<VirtualHost 172.16.1.2>

DocumentRoot /opt/www2

ServerName dns2

.......

</VirtualHost>

4、nginx实例

server{

listen 80

server_name yourdomain1#绑定域名

index index.html#默认文件

root /opt/www#网站根目录

include proxy.conf#调用其他规则

}

server{

listen 80

server_name yourdomain2#绑定域名

index index.html#默认文件

root /opt/www#网站根目录

include proxy.conf#调用其他规则

}


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/53742.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-02-26
下一篇2023-02-26

发表评论

登录后才能评论

评论列表(0条)

    保存