Changes between Initial Version and Version 2 of Ticket #6403
- Timestamp:
- Mar 22, 2010 9:27:50 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6403 – Description
initial v2 12 12 13 13 Now setting the guestos to bind to 1.1.1.2: 14 14 {{{ 15 15 VBoxManage setextradata "guest os" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/BindIP" "1.1.1.2" 16 16 … … 20 20 21 21 VBoxManage setextradata "guest os" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guestssh/HostPort" 22 22 22 }}} 23 23 Then when trying to connect to ssh -p 22 1.1.1.2 connection is refused, and wireshark dump on the hostos shows it is being reset. 24 24 25 25 Testing this by binding to tcp/23 for the guestos on the outside of the NAT: 26 26 {{{ 27 27 VBoxManage setextradata "guest os" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guestssh/Protocol" TCP 28 28 … … 30 30 31 31 VBoxManage setextradata "guest os" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guestssh/HostPort" 23 32 32 }}} 33 33 Now, ssh -p 23 1.1.1.2 works. However, ssh -23 1.1.1.1 is also being forwarded to the guestos, but is not what is expected due to the BindIP of 1.1.1.2. 34 34