Possible fix for networking issues on VMs
This commit is contained in:
parent
2765632fdc
commit
ae35363090
@ -1,21 +1,22 @@
|
||||
{ ip_address, hostname, open_ports, lib }:
|
||||
{
|
||||
{ ip_address, hostname, open_ports, lib }: let
|
||||
gateway_ip = "192.168.100.1";
|
||||
in {
|
||||
# Configure hostname.
|
||||
networking.hostName = hostname;
|
||||
|
||||
# Conigure a static IP address.
|
||||
networking.useDHCP = false;
|
||||
networking.useNetworkd= true;
|
||||
networking.useNetworkd = true;
|
||||
|
||||
# Bug fix
|
||||
systemd.services.systemd-networkd-wait-online.enable = lib.mkForce false;
|
||||
|
||||
networking.defaultGateway = {
|
||||
address = ip_address;
|
||||
address = gateway_ip;
|
||||
interface = "enp6s18";
|
||||
};
|
||||
|
||||
networking.nameservers = [ "192.168.100.1" ];
|
||||
networking.nameservers = [ gateway_ip ];
|
||||
networking.firewall.allowedTCPPorts = open_ports;
|
||||
networking.interfaces.enp6s18.ipv4.addresses = [
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user