Я установил RHEL 6.5 (NIRMAN) на рабочую станцию vmware 11 и добавил две карты Ethernet
eth0 - подключен к прямой физической сети (192.168.1.71) eth1 - NAT
eth0 хорошо пингует из моей внешней локальной сети (192.168.1.12) и наоборот тоже происходит. Однако я не могу подключиться к NIRMAN через SSH с 192.168.1.12, а также через замазку из машины Windows.
Файлы конфигурации доступны ниже
[root@nirman ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 TYPE=Ethernet UUID=d94588e0-baf4-487b-844b-d71f09d7ccd1 ONBOOT=yes NM_CONTROLLED=yes BOOTPROTO=none IPADDR=192.168.1.71 NETMASK=255.255.255.0 GATEWAY=192.168.1.1 DNS1=4.2.2.1 IPV6INIT=no USERCTL=no HWADDR=00:0C:29:C1:BE:F5 MTU=1400 PREFIX=24 DEFROUTE=yes IPV4_FAILURE_FATAL=yes NAME="System eth0" LAST_CONNECT=1429995602 [root@nirman ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth1 DEVICE=eth1 HWADDR=00:0c:29:c1:be:ff TYPE=Ethernet UUID=d94588e0-baf4-487b-844b-d71f09d7ccd1 ONBOOT=yes NM_CONTROLLED=yes BOOTPROTO=dhcp [root@nirman ~]#
[root@nirman ~]# cat /etc/networks default 0.0.0.0 loopback 127.0.0.0 link-local 169.254.0.0 [root@nirman ~]#
таблица маршрутов показана ниже
[root@nirman ~]# route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.1.0 192.168.1.1 255.255.255.0 UG 0 0 0 eth0 192.168.1.0 * 255.255.255.0 U 0 0 0 eth0 192.168.184.0 * 255.255.255.0 U 1 0 0 eth1 default 192.168.1.1 0.0.0.0 UG 0 0 0 eth0 [root@nirman ~]#
Состояние запущенного демона sshd
[root@nirman ~]# ps -aux | grep -i sshd Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.8/FAQ root 2335 0.0 0.2 100364 4472 ? Ss 02:37 0:00 sshd: root@pts/0 root 2501 0.1 0.2 100364 4496 ? Ss 02:42 0:02 sshd: root@pts/1 root 4057 0.0 0.2 100364 4188 ? Ss 02:46 0:00 sshd: root@notty root 17745 0.0 0.0 66604 1208 ? Ss 03:16 0:00 /usr/sbin/sshd root 17748 0.0 0.0 103256 876 pts/1 S+ 03:16 0:00 grep -i sshd [root@nirman ~]#
Я даже отключил контекст SELinux и iptables
[root@nirman ~]# cat /etc/selinux/config # This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of enforcing. # disabled - No SELinux policy is loaded. #SELINUX=enforcing SELINUX=disabled # SELINUXTYPE= can take one of these two values: # targeted - Targeted processes are protected, # mls - Multi Level Security protection. SELINUXTYPE=targeted [root@nirman ~]#
Ниже приведено сообщение об ошибке, которое я получаю при попытке подключения от 192.168.1.12 (сокол)
[root@falcon ~]# ssh -vv root@192.168.1.71 OpenSSH_5.3p1, OpenSSL 1.0.0-fips 29 Mar 2010 debug1: Reading configuration data /etc/ssh/ssh_config debug1: Applying options for * debug2: ssh_connect: needpriv 0 debug1: Connecting to 192.168.1.71 [192.168.1.71] port 22. debug1: connect to address 192.168.1.71 port 22: Connection timed out ssh: connect to host 192.168.1.71 port 22: Connection timed out [root@falcon ~]#