UOS安装bond和ssh服务

uos系统安装bond和ssh服务

前情提要:
由于是内网环境,没有外网,我们需要在uos的apt下配置代理才能连接源。

配代理地址:

vim /etc/apt/apt.conf
Acquire::http:proxy "http://192.168.1.1:8888/";
Acquire::https:proxy "https://192.168.1.1:8888/";

在NetworkManager里可先配个静态ip,提前下载安装好ifenslave模块和shh服务端、客户端

apt-get install ifenslave
apt-get install openssh-client openssh-service -y

然后关闭NetworkManager服务,其实这里也可以做bond,但是这个服务老是会莫名自动重启,所以要把他关掉。

systemctl stop NetworkManager.service
systelctl disable NetworkManager.service 

下载好ifenslave模块后就可以去网卡配置文件配置网络信息了

vim /etc/network/interface
	auto bond1	#bond起名为bond1
	iface bond1 inet static #bond1设置为静态ip,根据需求可以为DHCP
	address 1.1.1.2
	netmask 255.255.255.0
	gateway 1.1.1.1
	bond-mode 1	#bond模式为1,目前UOS只支持0/1模式,但是mode4也可以起来
	bond-slaves eth0 eth1 
	bond-primary eth0
 	bond-miimon 100
 	bond-downdelay 400
 	bond-updelay 800

重启网络

service networking restart

搞定(效果图后面再补)

配置ssh服务

vim /etc/ssh/sshd_config

ListenAddress 0.0.0.0 #修改ip地址

PermitRootLogin yes #允许root用户登录
PasswordAuthentication yes
:wq!

service ssh restart

最后reboot一下

你可能感兴趣的:(bond,uos,ssh)