Linux系统在日常使用中,会遇到网络连接不畅或无法连接的情况,为此,重启网络可能会解决问题。
重启网络可以通过在终端内输入相应命令来完成,最近的Linux系统中所用的命令主要为: systemctl restart network.service。也可以使用 systemctl restart network-manager.service 命令开启和重新开启网络管理服务, systemctl stop network-manager.service 命令关闭网络管理服务。
在使用终端命令重启网络时,也可以考虑直接使用ifdown/ifup的方式。首先使用ifdown命令关闭以太网端口,或者使用ifCONfig命令指定eth0 0.0.0.0以此关闭以太网端口;然后使用ifconfig eth0 192.168.1.104 netmask 255.255.255.0 up指令关闭以太网端口,以此来重新配置以太网端口。
除了上述几种方法重启网络以外,还有另外一种简单的方法,就是使用ifconfig重启网络。首先打开终端,输入ifconfig,可以查看本机已有的网卡,然后输入ifconfig 网卡名 up;再输入ifconfig 网卡名 down;输入ifconfig网卡名 up 重新启动网络,以达到重新启动网络的目的。
总的来说,Linux系统中重启网络的方式有很多,可以根据实际情况不同,选择合适的方法来解决网络问题。通过重启网络,可以很好地解决Linux系统中网络问题,从而使用Linux系统更加方便快捷。
香港服务器首选树叶云,2H2G首月10元开通。树叶云(shuyeidc.com)提供简单好用,价格厚道的香港/美国云 服务器 和独立服务器。IDC+ISP+ICP资质。ARIN和APNIC会员。成熟技术团队15年行业经验。
linux重启之后会执行那些脚本,或者配置文件
简单的方法,bash下面(root权限)输入setup然后进入route选好之后,save,ok!
怎么把linux系统的网络能够用?怎么配置网络?
不知道你问的是哪一种linux系统,我就说一种现在比较流行的linux操作系统RedHat吧.如下: vi /etc/sysconfig/network-scripts/ifcfg-eth0 然后按i进入插入模式,开始输入内容: DEVICE=eth0 BOOTPROTO=dhcp ONBOOT=yes(dhcp的配置方法就是这么简单) 静态IP配置: DEVICE=eth0 BOOTPROTO=static(或者是none) 最后重启网卡: /etc/init.d/network restart IPADDR=192.168.0.1 NETMASK=255.255.255.0 GATEWAY=192.168.0.254 ONBOOT=yes (上面是网卡的配置方法,动/静态IP) vi /etc/ search (域名) nameserver 192.168.0.254(DNS主机IP,如果说是动态IP不需配置DNS)
Linux如何设置上网???

linux上网设置经典二法1、一种是linux共享局域网内的windows主机上网如果你的网卡linux能够识别的话在安装的时候会有网卡配置过程。 从列表中选择网络设备,一般为eth0,点击“编辑”,在打开的“编辑接口”对话框中,用户可以通过DHCP来配置网络,这样也可以,不过我更喜欢定制一个静态IP,所以去掉“使用DHCP进行配置”前面的选项,然后在下面输入你要定制的IP地址和子网掩码,确定后,在下面的网关和主要DNS里输入当前局域网上做为主机的计算机的IP地址。 这样装完以后就搞定。 如果你是装完后再安装的网卡的话,那可以在“系统设置”里选择“网络”,如果你的网卡安装成功的话会在下面的列表里看到你的网卡,同样设置DNS(和上面一样),然后再回到列表里,选中你的网卡,点上面的编辑,选中“当计算机启动时激活设备”,然后选择下面的“静态设置的IP地址”,在下面输入和上面同样的设置。 再重新启动就可以了。 2、另外一种就是用你的linux通过ADSL上网了在linux下就集成着一个ADSL拨号软件,打开终端,在里面输入#adsl-setup,然后进行设置:LOGIN NAMEEnter your Login Name (default root):(输入你的用户名)INTERFACEEnter the Ethernet interface connected to the ADSL modemFor Solaris, this is likely to be something like /dev/ Linux, it will be ethX, where X is a number.(default eth0):(选择网络设备)Do you want the link to come up on demand, or stay up continuously?If you want it to come up on demand, enter the idle time in secondsafter which the link should be you want the link tostay up permanently, enter no (two letters, lower-case.)NOTE: Demand-activated links do not interact well with dynamic may have some problems with demand-activated the demand value (default no):(选择是按需拨号,还是持续连接)DNSPlease enter the IP address of your ISPs primary DNS your ISP claims that the server will provide dynamic DNS addresses,enter server (all lower-case) you just press enter, I will assume you know What you aredoing and not modify your DNS the DNS information here:(选择DNS)PASSWORDPlease enter your Password:Please re-enter your Password:USERCTRLPlease enter yes (two letters, lower-case.) if you want to allownormal user to start or stop DSL connection (default yes):(是否允许普通用户启动、关闭)The firewall choices are:0 - NONE: This script will not set any firewall are responsible for ensuring the security of your are STRONGLY recommended to use some kind of firewall rules.1 - STANDALONE: Appropriate for a basic stand-alone web-surfing workstation2 - MASQUERADE: Appropriate for a machine acting as an Internet gateway for a LANChoose a type of firewall (0-2):(选择firewall的规则)Start this connection at boot timeDo you want to start this connection at boot time?Please enter no or yes (default no):(选择是否随机启动)** Summary of what you entered **Ethernet Interface:User name:Activate-on-demand:DNS addresses:Firewalling:User Control:Accept these settings and adjust configuration FILEs (y/n)?(确认一下是否接受设置) 以上的设置在“系统设置”里 的“网络”里选择新建,建立一个xDSL连接,也可以实现。 设置完成了以后在网络里激活连接。 上面的ADSL连接就试过一次,由于我们是局域网,所以一直用的是共享上网,如果有什么错误不要骂我,还请指教!!
发表评论