Ok, aparentemente eu preciso do openssh-server no Computador A, apesar de eu estar na mesma rede. Eu li isso errado em outro lugar então.
Eu tenho a seguinte configuração:
O computador A tem um adaptador Wifi-USB (e é um robô, por isso não precisa de acesso real à Internet). Está executando o Ubuntu 14.04. O computador B é meu laptop que executa o Ubuntu 14.04 também.
O que eu fiz foi configurar um ponto de acesso Wi-Fi local no Computador B usando
No entanto, não consigo ssh do Computador B para o Computador A, sempre recebo o seguinte erro.
ssh [email protected]
ssh: connect to host ComputerA.local port 22: Connection refused
No meu entender, eu não preciso instalar o openssh-server no Computador A, já que estou apenas tentando o ssh enquanto estiver na mesma rede. (Isso está correto?)
Se eu correr
sudo iptables -L
Eu recebo a saída follwong: Computador B:
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT udp -- anywhere anywhere udp dpt:bootps
ACCEPT tcp -- anywhere anywhere tcp dpt:bootps
ACCEPT udp -- anywhere anywhere udp dpt:domain
ACCEPT tcp -- anywhere anywhere tcp dpt:domain
Chain FORWARD (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere 10.42.0.0/24 state RELATED,ESTABLISHED
ACCEPT all -- 10.42.0.0/24 anywhere
ACCEPT all -- anywhere anywhere
REJECT all -- anywhere anywhere reject-with icmp-port-unreachable
REJECT all -- anywhere anywhere reject-with icmp-port-unreachable
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Computador A:
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Eu tenho desativado ufw em ambos os computadores. Como eu realmente não sou um especialista em SSH, alguém pode me dizer o que eu posso fazer para consertar isso?
Se mais informações forem necessárias, eu ficaria feliz em fornecê-lo.
Tags ssh networking openssh wifi-hotspot