Linux 远程不行 设置ip.dns.gateway

Determining IP information for eth0启动失败

>>service network restart 

Shutting down interface eth0:                              [  OK  ]
Shutting down loopback interface:                          [  OK  ]
Bringing up loopback interface:                            [  OK  ]
Bringing up interface eth0:
Determining IP information for eth0... failed.             [FAILED]
半天找不出问题。只好直接修改配置文件: /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0
ONBOOT=yes
BOOTPROTO=none             //原来为 hdcp
HWADDR=00:0c:29:2b:c7:e5
BROADCAST=172.16.5.255
IPADDR=172.16.5.142
NETMASK=255.255.255.0
NETWORK=172.16.5.0
TYPE=Ethernet
保存后

>>service network restart

竟然好使了。。。。
#######################################################################
ip配置好后,远程连接不上,是因为sshd这个进程没有起来,原因是/etc/ssh/下面的ssh_host_dsa_key权

限不对,只能从755改成600,然后重启服务
service sshd start
ps -ef |grep ssh
#######################################################################


在Linux中不管你是做服务器还是只是平常使用,上网肯定都是最重要和不可缺少的一个因素之一,所以就

涉及到它的ip gateway dns等network配置和使用。但是设置linux网络的方法有两种:

第一种:使用命令修改(直接即时生效,重启失效)

#ifconfig eth0 192.168.0.1 netmask 255.255.255.0 up
      说明:
      eth0是第一个网卡,其他依次为eth1,eth*
      192.168.0.1是给网卡配置的第一个网卡配置的ip地址
      netmask 255.255.255.0 配置的是子网掩码
      up是表示立即激活

ifconfig的更多参数说明查看相关帮助

  gateway:

  # route add default gw 192.168.30.1 eth0

  dns:

# vi etc/resolv.conf

nameserver 202.131.80.1

  nameserver 202.131.80.5

如果要重起生效,就把这些写到起动脚本 rc.local中

第二种:修改配置文档(需要重启网络配置,永远生效)

一、修改IP地址

  [aeolus@db1 network-scripts]$ vi ifcfg-eth0

  DEVICE=eth0

  ONBOOT=yes

  BOOTPROTO=static

  IPADDR=192.168.30.197

  NETMASK=255.255.255.0

  GATEWAY=192.168.30.1

  二、修改网关

  vi /etc/sysconfig/network

  NETWORKING=yes

  HOSTNAME=Aaron

  GATEWAY=192.168.30.1

  三、修改DNS

  [aeolus@db1 etc]$ vi resolv.conf

  nameserver 202.131.80.1

  nameserver 202.131.80.5

(一般现在这样设置以后都要重启network,所以还涉及到网络重启配置)

 四、重新启动网络配置

方法有多种:

1:root账户下 # service network restart

  2:# /etc/init.d/network restart

3:# ifdown eth0

# ifup eth0

4:# ifconfig eth0 down

# ifconfig eth0 up

五、启动和关闭防火墙

即时生效:

1:#service iptables start

#service iptables stop

重启系统生效:

2:#service iptables on

#service iptables off          

当然ip gateway dns都是随你的网络改变而改变的

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wydxxy.html