-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Networking doesn’t work through NAT for Ubuntu cloud images #13
Comments
You have to setup network bridge in your ubuntu vm https://www.tecmint.com/create-network-bridge-in-ubuntu/amp/ |
How do I install bridge-utils without a network? |
I think you can install packages in the existing Ubuntu vm via the NAT for outgoing traffic. If not, you did not set it up properly in the first place and is not the problem of this vftool. |
For my is not working as well. What could I have done wrong? |
Ok I end up using the port forwarding on macOS similar to the win10 wsl2 to port forward from the os to the ipaddress of the vm. http://iphonesdkdev.blogspot.com/2020/12/20201203.html I created the VM with vnc server installed. Set the vm fixed ip address of 192.168.64.10 and in macOS host I do the port forwarding to the ipaddress and port number of the vm using this script. Then other machines on the LAN can vnc connect to the vm through the ipaddress of the macOS host with port 5910. `echo " rdr pass on en0 inet proto tcp from any to any port 5910 -> 192.168.64.10 port 5901 rdr pass on wlan0 inet proto tcp from any to any port 5910 -> 192.168.64.10 port 5901 " | sudo pfctl -ef -` |
No description provided.
The text was updated successfully, but these errors were encountered: