如何将 mac 地址设置为主机名和主机 127.0.1.1

如何将 mac 地址设置为主机名和主机 127.0.1.1

我的操作系统是 Ubuntu,我正在努力将主机名和主机自动设置为 mac 地址,任何帮助都将非常有用。

NAME=$GATEWAY_MAC| sed s/://g
hostnamectl set-hostname $NAME
sed -i '2d' /etc/hosts
ed /etc/hosts <<-'EOF'
/127.0.0.1/a 127.0.1.1 $NAME 
. wq
EOF
cat /etc/hostname cat /etc/hosts

相关内容