netgroup / srv6-mininet-extensions

Mininet extensions for SRv6
Apache License 2.0
15 stars 5 forks source link

SSH Password Error #4

Open CavalryXD opened 3 years ago

CavalryXD commented 3 years ago

Hi! I build the environment by command

sudo python srv6_mininet_extension.py --topology topo/example_srv6_topology.json Now I want to connect to node ads1 by command(not in Mininet CLI) ssh root@2000::1 but I don’t know the password. Could you tell me how to find this password and config it to host in mininet? Thank you

cscarpitta commented 3 years ago

Hi @CavalryXD , with the command ssh root@2000::1 you are attempting to connect and log into the node 2000::1 with the user root.

Consequently, the password required by ssh is the password of the root user on your system. Normally, it should be the same password that you use when executing a command with sudo.

Regards, Carmine