快捷搜索:   nginx

Ubuntu 8.04 Server 安装 nfs 记录

(

上图是计划完成的网络配置

)


1、ubuntu 8.04 server 虚拟 client(默认ssh)


2、配置ssh (要求:需要加强ssh服务器的安全性)



 

服务器端:(已经安装)


apt-get install ssh



编辑/etc/ssh/sshd_config


#ServerKeyBits 768 ← 找到这一行,将行首的“#”去掉,并将768改为1024



PermitRootLogin yes  ← 找到这一行,将行首的“#”去掉,并将yes改为



PermitRootLogin no  ← 修改后变为此状态,不允许用root进行登录



PermitEmptyPasswords no  ← 找到此行将行头的“#”删除,不允许空密码登录



PermitEmptyPasswords no  ← 修改后变为此状态,禁止空密码进行登录



#PasswordAuthentication yes ← 找到这一行,将yes改为no



PasswordAuthentication no ← 修改后变为此状态,不允许密码方式的登录



以普通用户的身份建立公钥和私钥:


ssh-keygen -t rsa


然后要求你确认钥匙的文件名(用默认的就好了);输入口令;再次输入口令。



在~/.ssh/下会生成公钥id_rsa.pub和私钥id_rsa



更改公钥文件名:mv id_rsa.pub authorized_keys


设置文件属性:chmod 400 authorized_keys




将私钥id_rsa移动到客户机端


scp username@IP:远程家目录/.ssh/id_rsa 本地家目录/.ssh/



重启ssh服务:/etc/init.d/ssh restart



客户机端:


apt-get install ssh


mkdir ~/.ssh/


chown user:user ~/.ssh/


chmod 700 ~/.ssh/


将私钥文件移动到~/.ssh/中


chown root:root ~/.ssh/id_rsa


chmod 644 ~/.ssh/id_rsa




ssh登录方法:


ssh 远程主机的用户名@远程主机的IP地址


输入口令


3、增加内网虚拟网卡


关闭虚拟机,增加一块内网网卡 修改/etc/libvirt/qemu/ubunser.xml


<interface type='bridge'>


      <mac address='54:52:00:38:97:c3'/>


      <source bridge='br0'/>


      <model type='virtio'/>


    </interface>


<interface type='network'>
      <mac address='54:52:00:10:fa:6e'/>
      <source network='default'/>
      <model type='virtio'/>
    </interface>

增加红色部分


$sudo virsh define ubunser.xml


4、挂载内网samba



配置nfs


5、配置防火墙

顶(0)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论