如何在Ubuntu中启动网络服务?
时间:2020-01-09 14:16:44 来源:igfitidea点击:
如何使用命令行在Ubuntu Linux中启动网络服务?
Ubuntu Linux附带CLI和图形实用程序,用于配置网络设备。
但是,作为服务器管理员,解决方法:您需要集中精力在命令行上管理网络。
本教程显示如何使用CLI在Ubuntu Linux上启动,停止和重新启动网络服务。
在Ubuntu中启动网络服务的命令
最新版本的Ubuntu Linux的语法如下:
sudo systemctl start networking.service
如何在Ubuntu中重新启动网络服务?
sudo systemctl restart networking.service
如何在Ubuntu中停止网络服务?
sudo systemctl stop 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
如何查看网络配置
运行以下cat命令:
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上更改或编辑网络配置?
使用文本编辑器(例如vim命令/nano命令)编辑/etc/network/interfaces文件:
sudo nano /etc/network/interfaces
或者
sudo vi /etc/network/interfaces
文件更新后,重新启动网络服务,运行:
sudo systemctl restart networking.service
如何查看Ubuntu上网络服务的状态?
只需在CLI上运行以下命令:
sudo systemctl status networking.service