Networking
Automate network setup as we have switch between Nat and internal network multiple times or bring a new machine into this network
You might need to put your vm back on internet for some time. THis is how you can do it.
scripts to setup NAT network and internal network on remnux.
First set your network adapter to internal then use netplan.
Filename: 01-netcfg_internal.yaml
# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
version: 2
renderer: networkd
ethernets:
enp0s3:
dhcp4: no
addresses: [10.0.0.3/24]
gateway4: 10.0.0.1
dhcp6: yes
Scripts: netplan_internal.sh
cp /home/remnux/scripts/01-netcfg_internal.yaml /etc/netplan/01-netcfg.yaml
netplan applyor
Set your network adapter in NAT network then
Filename: 01-netcfg_nat.yaml
Scripts: netplan_nat.sh
or
Putting FLareVM back to internet
put vm in NAT state
change DNS setting from:
set to automatically both things.
reverting to internal
put vm in internal network as done previosuly.
change DNS setting back

Let's automate it
set your machien in internal network and then run this bat script and run as administrator
set your machine in nat mode and run this script as administrator
where is "Ethernet" is your network interface name, use this command to find your interface
Last updated