本文主要是介绍Mac系统下使用FinalShell远程虚拟机(centos),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
配置静态IP:vi /etc/sysconfig/network-scripts/ifcfg-eth0
将配置文件改成如下即可。其中网关为mac电脑的网关地址。
DEVICE="eth0"
#IPV6INIT="yes"
#BOOTPROTO="dhcp"
UUID="19cdf43b-c3dd-4a8b-9e32-3285d1787543"
ONBOOT="yes"
BOOTPROTO="static"
IPADDR="192.168.31.110"
GATEWAY="192.168.31.1"
NETMASK="255.255.255.0"
DNS1=192.168.31.1
DNS2=8.8.8.8
重置网络服务
service network restart
把网络改成桥接wifi
测试外网:ping www.baidu.com
查看 ip:ip addr
修改主机名:vi /etc/hostname
重启:reboot
FinalShell远程虚拟机,mac电脑需要打开22端口。
可以做主机名与IP地址的映射
打开Mac的hosts文件,在/private/etc/hosts下。
在hosts文件中添加,IP地址和要映射的名字,如下所示。
192.168.31.110 node1 node1.itcst.cn
192.168.31.111 node2 node2.itcst.cn
192.168.31.112 node3 node3.itcst.cn
此时可以 ping 192.168.31.110 === ping node1 == ping node1.itcst.cn。
这篇关于Mac系统下使用FinalShell远程虚拟机(centos)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!