为主机配置IP

第一种方法:nmcli

java 复制代码
#nmcli connection modify eth0 ipv4.method manual ipv4.addresses 172.25.254.100/24 ipv4.gateway 172.25.254.2 ipv4.dns 114.114.114.114 autoconnect yes
#nmcli c up etho   //激活网卡命令(网卡早就配好,只是修改ip就不用输入这条命令了)

第二种方法:网卡可视化界面

java 复制代码
#nm-connection-editor

起一个网卡名称

写上IP、掩码、网关、dns服务器地址

也可以在Method选择DHCP服务自动获取

选择这块网卡

有IP且可以联网了

第三种方法:shell脚本命令

java 复制代码
vim /bin/xxx.sh

起一个shell脚本。

写入

java 复制代码
#!/bin/bash                                 'shell执行'
hostnamectl hostname yyy$1.wxrd.org      '$1代表值'
cd /etc/NetworkManager/system-connections/
rm -fr *                                     '这条命令千万不要在服务器上用!后果很严重'
cat > eth0.nmconnection <<EOF
[connection]
id=eth0
type=ethernet
interface-name=eth0

[ipv4]
method=manual
addressl=192.168.1.$1/24,192.168.1.2      'IP/掩码,网关;自行定义网段;网关用route-n命令查'
dns=114.114.114.114;                      '自行定义'

EOF

chmod 600 eth0.nmconnection                  '赋予可执行权限'

nmcli connection reload
nmcli connection up eth0

echo "192.168.1.$1  server$1.wxrd,org" >> /etc/hosts
java 复制代码
#chmod +x /bin/xxx.sh                         '赋予文件可执行权限'

这样,就可以用了(这台放起来)

克隆出一个他的克隆虚拟机

java 复制代码
#xxx.sh 100                                 '执行'

这台名称为yyy100.wxrd.org 且IP地址为192.168.1.100/24的主机诞生啦

证明脚本设定好啦!

以上三种设置IP的方法

拜拜-----------------------------------------------------------------------------------------------------(疯狂尖叫)

相关推荐
qq_4336184429 分钟前
shell 编程(五)
linux·运维·服务器
VVVVWeiYee1 小时前
项目2路由交换
运维·服务器·网络·网络协议·信息与通信
小伍_Five3 小时前
透视网络世界:计算机网络习题的深度解析与总结【前3章】
服务器·网络·计算机网络
芷栀夏3 小时前
如何在任何地方随时使用本地Jupyter Notebook无需公网IP
服务器·ide·tcp/ip·jupyter·ip
G鲲鹏展翅Y3 小时前
jupyter-lab与实验室服务器远程链接
服务器·jupyter
广而不精zhu小白4 小时前
CentOS Stream 9 挂载Windows共享FTP文件夹
linux·windows·centos
一休哥助手4 小时前
全面解析 Linux 系统监控与性能优化
linux·运维·性能优化
二进制杯莫停4 小时前
掌控网络流量的利器:tcconfig
linux
LI JS@你猜啊4 小时前
Elasticsearch 集群
大数据·服务器·elasticsearch
watl04 小时前
【Android】unzip aar删除冲突classes再zip
android·linux·运维