My host is Ubuntu 16.04
My VM Setup Includes
Ubuntu (x2)
Centos 6.9 (x2)
PFSense
Host has VirtualBox 5.2.4 (The Latest Version as of December 23rd 2017) All Machines Have the Latest Guest Additions.
What I am looking to do is have all default networking set to 10.0.6.1 including DHCP, DNS, GATEWAY. I looked here at the virtualbox documentation and went to the #changenat on chapter 9 section.
So Far it seems virtualbox has 10.0.6.1 - 10.0.6.4 reserved for it's own NAT Networking including Tftp, Dhcp, Dns, Wins , Gateway and I want to have 10.0.6.1 do all of what the first 4 are doing by default with virtualbox.
Command's I have tried I are:
Which show up in the documentation for Virtualbox but each presents an Error.
Code: Select all
VBoxManage modifyvm "Ubuntu" --nattftpserver1 10.0.6.1 is not a valid command / argument
VBoxManage modifyvm "Ubuntu" --natdnsserver1 10.0.6.1 is not a valid command / argument
VBoxManage modifyvm "Ubuntu" --natdhcpserver1 10.0.6.1 is not a valid command / argument
VBoxManage modifyvm "Ubuntu" --natgwserver1 10.0.6.1 is not a valid command / argument
VBoxManage modifyvm "Centos 6.9" --nattftpserver1 10.0.6.1 is not a valid command / argument
VBoxManage modifyvm "Centos 6.9" --natdnsserver1 10.0.6.1 is not a valid command / argument
VBoxManage modifyvm "Centos 6.9" --natdhcpserver1 10.0.6.1 is not a valid command / argument
VBoxManage modifyvm "Centos 6.9" --natgwserver1 10.0.6.1 is not a valid command / argument
VBoxManage modifyvm "PFSense" --nattftpserver1 10.0.6.1 is not a valid command / argument
VBoxManage modifyvm "PFSense" --natdnsserver1 10.0.6.1 is not a valid command / argument
VBoxManage modifyvm "PFSense" --natdhcpserver1 10.0.6.1 is not a valid command / argument
VBoxManage modifyvm "PFSense" --natgwserver1 10.0.6.1 is not a valid command / argument
(Centos 6.9) is my Machine name
(PFSense) is my Machine name
How can I change the DHCP and DNS and GW and GW on my NAT Network on NAT Network Subnet 10.0.6.0/24 on 10.0.6.1.
I have looked at all available documentation and I am struggling to find a solution to this.