配置多网卡多IP的方式
Posted yexiuer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置多网卡多IP的方式相关的知识,希望对你有一定的参考价值。
[[email protected] conf.d]# cat ip.conf
server {
????listen 10.0.0.7:80;
????server_name _;
?
????location / {
????????root /code_ip_eth0;
????????index index.html;
????}
}
?
server {
????listen 172.16.1.7:80;
????server_name _;
?
????location / {
????????root /code_ip_eth1;
????????index index.html;
????}
}
?
2.根据配置创建目录
[[email protected] conf.d]# mkdir /code_ip_eth0
[[email protected] conf.d]# echo "Eth0" > /code_ip_eth0/index.html
?
[[email protected] conf.d]# mkdir /code_ip_eth1
[[email protected] conf.d]# echo "Eth1" > /code_ip_eth1/index.html
?
3.重启nginx服务
[[email protected] conf.d]# systemctl restart nginx
?
4.使用curl命令测试
[[email protected] ~]# curl 172.16.1.7
Eth1
[[email protected] ~]# curl 10.0.0.7
Eth0
以上是关于配置多网卡多IP的方式的主要内容,如果未能解决你的问题,请参考以下文章