summaryrefslogblamecommitdiff
path: root/hosts/kay/modules/router.nix
blob: c621620048fb784d06f258f4e4de56080a1ad41a (plain) (tree)
1
2
3
4
5
6
7
8
9


        
                          




                                 
                               

  

                                
                




                                            





                                    





                                                                

                

                                  
                        
                                                                                                         





                                                           
                                 

    
{ ... }:

let
  lanInterface = "enp4s0";
  wanInterface = "ppp0";
  subnet = "10.0.0.0";
  prefix = 24;
  host = "10.0.0.1";
  leaseRangeStart = "10.0.0.100";
  leaseRangeEnd = "10.0.0.254";
in
{
  imports = [ ./wireguard.nix ];

  networking = {
    nat = {
      enable = true;
      externalInterface = wanInterface;
      internalInterfaces = [ lanInterface ];
    };
    useDHCP = false;
    interfaces."${lanInterface}" = {
      ipv4.addresses = [{ 
        address = host;
        prefixLength  = prefix;
      }];
      # the mac id of the built-in nic is required for
      # ppp authentication with isp, this is here to avoid
      # mac address collision since it's original mac id is used
      # by the new wan interface for ppp authentication
      # see ./network.nix
      macAddress = "40:ed:00:08:ba:be";
    };
    firewall = {
      allowedUDPPorts = [ 53 67 ];
      allowedTCPPorts = [ 53 ];
      extraCommands = ''
        iptables -t nat -I POSTROUTING 1 -s ${subnet}/${toString prefix} -o ${wanInterface} -j MASQUERADE
      '';
    };
  };

  services.dnsmasq.settings = {
    dhcp-range = [ "${leaseRangeStart},${leaseRangeEnd}" ];
    interface = [ lanInterface ];
  };
}