首頁 > 軟體

SecureCRT遠端連線虛擬機器設定

2020-06-16 17:05:21

生產中,我們是看不到虛擬機器的工作介面,虛擬機器的介面相當於機房顯示屏的樣子,實際上我們是在操作工具裡面進行管理,這裡使用SecureCRT遠端連線虛擬機器,SecureCRT的設定如下:

1、開啟SecureCRT(超級終端),點選【快速連結】,如下:

2、建立連線,設定主機名和使用者名稱,埠號預設即可,如下:

3、第一次會出現提示框,選擇【接收並儲存】,會出現一個彈框,如下,輸入密碼即可登入:

4、連線成功,如下:

5、對談選項初步設定,這個是根據自己喜好,如下:

設定根據個人喜好,我的設定如下:

(設定1)

(設定2)

5、檢視網絡卡的設定資訊,如果ONBOOT=no,那麼每次開機都要【ifup eth0】啟動網絡卡,如下:

6、修改網絡卡的設定資訊,讓ONBOOT=yes;這樣就不用每次開機啟動網絡卡即【ifup eth0】,如下:

使用sed -i 's#ONBOOT=no#ONBOOT=yes#g' /etc/sysconfig/network-scripts/ifcfg-eth0,修改網絡卡的設定資訊

網路介面組態檔
[root@localhost ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
TYPE=Ethernet #網絡卡型別
DEVICE=eth0 #網絡卡介面名稱
ONBOOT=yes #系統啟動時是否自動載入,網絡卡是否啟動,yes自動啟動,no自己每次啟動,ifup eth0,ONBOOT=no,每次要ifup eth0啟動
BOOTPROTO=static #啟用地址協定 –static:靜態協定 –bootp協定 –dhcp協定
IPADDR=192.168.1.11 #網絡卡IP地址
NETMASK=255.255.255.0 #網絡卡網路地址
GATEWAY=192.168.1.1 #網絡卡閘道器地址
DNS1=10.203.104.41 #網絡卡DNS地址
HWADDR=00:0C:29:13:5D:74 #網絡卡裝置MAC地址
BROADCAST=192.168.1.255 #網絡卡廣播地址
重新匯入ifcfg-eth0網路組態檔
[root@localhost ~]# /etc/init.d/network reload
Shutting down interface eth0: [ OK ]
Shutting down loopback interface: [ OK ]
Bringing up loopback interface: [ OK ]
Bringing up interface eth0: [ OK ]

網絡卡介面關閉與啟用
[root@localhost ~]# ifdown eth0 #關閉網路
[root@localhost ~]# ifup eth0 #啟動網路

網路服務啟動與關閉
方法一:
[root@localhost ~]# service network stop #關閉網路服務
[root@localhost ~]# service network start #啟動網路服務
[root@localhost ~]# service network restart #重新啟動網路服務
方法二:
[root@localhost ~]# /etc/init.d/network stop
[root@localhost ~]# /etc/init.d/network start
[root@localhost ~]# /etc/init.d/network restart
網絡卡狀態查詢
[root@localhost ~]# service network status
Configured devices:
lo eth0
Currently active devices:
lo eth0

臨時設定網絡卡資訊,無需重新啟動。
[root@localhost ~]# ifconfig eth0 10.1.1.10 netmask 255.0.0.0

使用SecureCRT登入Linux伺服器  http://www.linuxidc.com/Linux/2017-03/142264.htm

SecureCRT SSH連線一直提示密碼錯誤 http://www.linuxidc.com/Linux/2016-09/134925.htm

Linux中使用SecureCRT來上傳和下載檔案 http://www.linuxidc.com/Linux/2017-01/139375.htm

Ubuntu 12.04 + 虛擬機器VMware 9 + Secure CRT + EditPlus 本地C++開發環境搭建 http://www.linuxidc.com/Linux/2013-05/84820.htm

利用SecureCRT在Linux與Windows之間傳輸檔案 http://www.linuxidc.com/Linux/2014-08/105413.htm

SecureCRT中文顯示亂碼  http://www.linuxidc.com/Linux/2017-06/144831.htm

用SecureCRT連線虛擬機器中的Linux系統(Ubuntu)  http://www.linuxidc.com/Linux/2016-12/138786.htm

SecureCRT8.0設定語法高亮  http://www.linuxidc.com/Linux/2017-08/14656.htm

虛擬機器CentOS的NAT模式聯網和SecureCRT遠端登入管理工具  http://www.linuxidc.com/Linux/2017-05/144328.htm


IT145.com E-mail:sddin#qq.com