‘壹’ 请问linux配置网卡后,单独关掉网卡和重启网卡的命令是什么
网卡配置后可以用多种方式启动和关掉网卡
1、服务形式开关网卡
启动:service network start
关闭:service network stop
2、还可以在这里开关网络服务
启动网络服务:/etc/init.d/network start
停止网络服务:/etc/init.d/network stop
2、ifconfig开关网卡
启动:ifconfig eth网卡编号 up
关闭:ifconfig eth网卡编号 down
‘贰’ linux启动、关闭、重启网络服务的两种方式
第一种就是楼上说的直接service 服务名称 start/restart/stop
第二种可以直接进入/etc/init.d目录,服务的脚本文件都存放在此目录中,可以直接执行对其start/restart/stop如:
[root@localhost ~]# cd /etc/init.d
[root@localhost init.d]# ./ntpd restart
关闭 ntpd: [确定]
启动 ntpd: [确定]
[root@localhost init.d]#
‘叁’ linux如何临时性关闭指定的网卡
ifconfig -a (不加-a参数,只能查启用的网卡) 例如:网卡名 eth0 启用网卡命名 ifconfig eth0 up 禁用网卡命名 ifconfig eth0 down 验证了 suse系统/redhat系统/ubuntu系统/Frdora系统/CentOS系统,均能使用。
‘肆’ Linux 启动、关闭、重启网络服务的两种方式
Linux 启动、关闭、重启网络服务的两种方式:
1、使用service脚本来调度网络服务,如:
启动 service network start;
关闭 service network stop;
重启 service network restart;
2、直接执行网络服务的管理脚本,如:
启动/etc/init.d/network start;
关闭 /etc/init.d/network stop;
重启 /etc/init.d/network restart。
(4)linux怎么关闭网络扩展阅读
linux其他服务相关命令介绍:
1、linux显示所有服务的运行状态命令
service --status-all
chkconfig --list
2、linux查看单个服务的运行状态命令
service iptables status
3、linux查看服务启动状态,是否开机自动启动命令
chkconfig --list servicename
‘伍’ linux 如何关闭dhcp
如果有系统界面,在桌面的左上角选择“管理”“网络”选项进行配置就行。
要不就到
/etc/sysconfig/ network-scripts/目录下,编辑 ifcfg-eth0
配置个IP就可以了,例如:
BOOTPROTO=static
IPADDR=172.31.0.13
NETMASK=255.255.252.0
BROADCAST=172.31.3.254
ONBOOT=yes
‘陆’ linux底下如何通过命令行关闭一个网络端口
可以用iptables拦截
----------------------------
>iptables -F INPUT
>iptables -P INPUT ACCEPT
>iptables -F OUTPUT
>iptables -P OUTPUT ACCEPT
‘柒’ linux 关掉网卡 怎么关掉无线网卡
首先通过ifconfig -a命令查找当前网络下存在的网卡,一般为eth0、1、2...or wlan0、1、2、3... 由于你的无线网卡被关闭了,最直接的就是需要进行启动操作;eth=本地网卡,既表示有线网卡类,wlan=无线局域网,既表示无线网卡类; 进行启动操作,...
‘捌’ Linux里面网络时间怎么关闭
关闭的话有几种方法均可, shutdown -h now 表示立即关机 shutdown -r now表示立即重启 shutdown是系统关机指令。 功能说明:系统关机指令。 语法:shutdown [-efFhknr][-t 秒数][时间][警告信息] 补充说明:shutdown指令可以关闭所有程序,
‘玖’ Linux 启动、关闭、重启网络服务的两种方式
注意:1.这三种方式主要用于以redhat为基础的发行版
2.如果还不知道运行级别是什么,那么最好先看看相关资料再实验
第一种方式:ln -s 建立启动软连接
在Linux中有7种运行级别(可在/etc/inittab文件设置),每种运行级别分别对应着/etc/rc.d/rc[0~6].d这7个目录
# 0 - 停机(千万不能把initdefault 设置为0 )
# 1 - 单用户模式 # s init s = init 1
# 2 - 多用户,没有 NFS
# 3 - 完全多用户模式(标准的运行级)
# 4 - 没有用到
# 5 - X11 多用户图形模式(xwindow)
# 6 - 重新启动 (千万不要把initdefault 设置为6 )
‘拾’ 怎么在linux 系统下,禁用和启用网卡
ifconfig -a (不加-a参数,只能查启用的网卡)
例如:网卡名 eth0
启用网卡命名 ifconfig eth0 up
禁用网卡命名 ifconfig eth0 down
验证了 suse系统/redhat系统/ubuntu系统/Frdora系统/CentOS系统,均能使用。