1关闭防火墙
systemctl stop firewalld
setenforce 0
2下载nginx程序
fnd install nginx -y
3配置ip
nmcli connection modify ens32 ipv4
method manual ipv4.
addresses 192.168.65.200/24 ipv4.
gateway 192.168.65.2 ipv4.
dns 114.114.114.114 +ipv4.
addresses 192.168.65.300/24
nmcli connection up ens32
4网站内容和配置
mkdir /www/ip/{200,300} -pv
vim /etc/nginx/conf.d/test_ip.conf
server { listen 192.168.65.200:80;
root /www/ip/200; location / } server { listen 192.168.65.300:80;
root /www/ip/300; location / } }
echo this 200 > /www/ip/200/index.html
echo this 300 > /www/ip/300/index.html
5重启网站
systemctl restart nginx
6.客户端连接测试
curl 192.168.65.200
curl 192.168.65.300