Linux下面如何用命令进行配置网络
Posted Olittlestone
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下面如何用命令进行配置网络相关的知识,希望对你有一定的参考价值。
1.设置ip
sudo ifconfig eth0 192.168.1.121
2.设置网关
sudo route add default gw 192.168.1.1 eth0
3.设置dns
sudo -i
echo "nameserver 8.8.8.8" > /etc/resolve.conf
以上是关于Linux下面如何用命令进行配置网络的主要内容,如果未能解决你的问题,请参考以下文章