平时比较常用CentOS系统,SuSE配置静态IP与之稍有不同,在这里做一下记录
设置ip地址
linux-38s9:/etc/sysconfig/network # cat ifcfg-eth0
BOOTPROTO='static'
BROADCAST=''
ETHTOOL_OPTIONS=''
IPADDR='10.20.90.111'
MTU=''
NAME=''
NETMASK='255.255.255.0'
NETWORK='10.20.90.1'
REMOTE_IPADDR=''
STARTMODE='auto'
DHCLIENT_SET_DEFAULT_ROUTE='yes'
设置网关
linux-38s9:/etc/sysconfig/network # cat routes # 若无则创建该文件
default 10.20.90.1
设置DNS
linux-38s9:/etc/sysconfig/network # cat /etc/resolv.conf
### /etc/resolv.conf file autogenerated by netconfig!
#
# Before you change this file manually, consider to define the
# static DNS configuration using the following variables in the
# /etc/sysconfig/network/config file:
# NETCONFIG_DNS_STATIC_SEARCHLIST
# NETCONFIG_DNS_STATIC_SERVERS
# NETCONFIG_DNS_FORWARDER
# or disable DNS configuration updates via netconfig by setting:
# NETCONFIG_DNS_POLICY=''
#
# See also the netconfig(8) manual page and other documentation.
#
# Note: Manual change of this file disables netconfig too, but
# may get lost when this file contains comments or empty lines
# only, the netconfig settings are same with settings in this
# file and in case of a "netconfig update -f" call.
#
### Please remove (at least) this line when you modify the file!
nameserver 219.141.136.10
标签:12,SuSE,DNS,SP5,sysconfig,etc,file,netconfig,network
From: https://www.cnblogs.com/werr370/p/16850603.html