网卡配置文件

/etc/network/interfaces

网卡配置文件内容

auto lo

iface lo inet loopback

auto eth0

iface eth0 inet static(静态IP)

address 192.168.8.8(IP地址)

netmask 255.255.255.0(子网掩码)

network 192.168.8.0(地址段)

broadcast 192.168.8.255(广播)

gateway 192.168.8.2(网关)

重启网卡

service working restart

网卡开机启动

vim /etc/rc.local 在exit 0前加入/etc/init.d/ssh start


ssh开机启动设置

在/etc/rc.local配置文件exit 0前加入/etc/init.d/ssh start

ssh 默认禁止ROOT用户登陆

vim /etc/ssh/sshd_config

将 #PermitRootLogin without-password

改为 PermitRootLogin yes