標籤:ubuntu xshell
virtualbox兩個網卡配置:
a:host-only 模式:address 192.168.56.1netmask 255.255.255.0不啟用dhcp服務。b:nat 模式:address 10.0.2.0/24netmask 255.255.255.0 啟用dhcp服務
虛擬機器的網路設定:
650) this.width=650;" src="http://s3.51cto.com/wyfs02/M01/6E/B9/wKiom1WDyUvTIhzxAAHPG1uSyZE046.jpg" title="G3J`L(LT43P0BUD4TZ0GMI7.png " style="float:none;" alt="wKiom1WDyUvTIhzxAAHPG1uSyZE046.jpg" />
650) this.width=650;" src="http://s3.51cto.com/wyfs02/M01/6E/B6/wKioL1WDyv3SfHQ_AAHQqDdByhg869.jpg" title="]})9W@A9X$LC7ZL[)V3}X@C.png" style="float:none;" alt="wKioL1WDyv3SfHQ_AAHQqDdByhg869.jpg" />
配置完成開始安裝Ubuntu作業系統。
安裝完成,ubuntu作業系統網路設定:
auto eth0iface eth0 inet static address 192.168.56.3netmask 255.255.255.0gateway 192.168.56.1auto eth1iface eth1 inet static address 10.0.2.3netmask 255.255.255.0dns-nameservers 8.8.8.8配置完成後重啟系統。[email protected]:~$ route -n Kernel IP routing tableDestination Gateway Genmask Flags Metric Ref Use Iface0.0.0.0 10.0.2.1 0.0.0.0 UG 0 0 0 eth110.0.2.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1192.168.56.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0預設的gateway :10.0.2.1若是顯示的是:[email protected]:~$ route -n Kernel IP routing tableDestination Gateway Genmask Flags Metric Ref Use Iface0.0.0.0 192.168.0.1 0.0.0.0 UG 0 0 0 eth010.0.2.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1192.168.56.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
執行以下命令:
[email protected]:~$ sudo route del dafault gw 192.168.56.1 eth0 [email protected]:~$ sudo route add dafault gw 10.0.2.1 eth1這裡ping baidu.com就通了。執行 sudo apt-get update -y (這一步很重要,若不執行後面沒辦法執行下載安裝)
xshell無法遠端連線:
[email protected]:~$ ps aux |grep ssh root 2045 0.0 0.1 61364 3064 ? Ss 15:18 0:00 /usr/sbin/sshd -Droot 2106 0.0 0.2 121952 4624 ? Ss 15:24 0:00 sshd: hangtiangazi [priv]hangtia+ 2155 0.0 0.1 121952 2220 ? S 15:24 0:00 sshd: [email protected]/0hangtia+ 2286 0.0 0.0 10464 920 pts/0 S+ 16:16 0:00 grep --color=auto ssh若沒有sshd進程,cd /etc/init.d/ls |grep ssh如有,啟動ssh服務 sudo ./ssh start 若沒有執行:sudo apt-get install -y openssh-serversudo ./ssh start xshell端登陸成功。
本文出自 “gaogaozi” 部落格,請務必保留此出處http://hangtiangazi.blog.51cto.com/8584103/1663594
virtualbox-Ubuntu網路設定上網,並且通過xshell登陸