在Ubuntu中如何重启网络服务?
时间:2019-11-20 08:53:36 来源:igfitidea点击:
在Ubuntu Linux中,如何启动网络服务?
在Ubuntu中启动网络服务的命令
最新版本的Ubuntu Linux的语法如下:
sudo systemctl start networking.service
在Ubuntu中如何重启网络服务?
sudo systemctl restart networking.service
在Ubuntu中如何停止网络服务?
sudo systemctl stop networking.service
在Ubuntu中如何查看网络服务的状态?
sudo systemctl status networking.service
旧版本Ubuntu Linux中管理网络服务
使用下面的语法来启动,停止和重启网络服务:
sudo /etc/init.d/networking start sudo /etc/init.d/networking stop sudo /etc/init.d/networking restart
Ubuntu如何查看网络服务状态
使用ip命令查看网络接口状态:
ip a ip a s eth0 ip a s ens3
Ubuntu如何查看网络配置
运行下面命令:
cat /etc/network/interfaces
输出示例:
# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto ens3 iface ens3 inet static address 192.168.122.17 gateway 192.168.122.1
在Ubuntu中如何修改网络配置?
编辑/etc/network/interfaces配置文件:
sudo vi /etc/network/interfaces
文件更新后,重启网络服务:
sudo systemctl restart networking.service