Roberto Bertó
Roberto Bertó
- fixed vnetgen for newer linux distros to prioritize ip over ipconfig - added 'ifconfig | grep mtu' alternative to 'ifconfig | grep Link' as newer ifconfig doesn't have Link...
``` import radix import socket rtree = radix.Radix() rnode = rtree.add("10.0.0.0/8") rnode.data["blah"] = "whatever you want" rnode = rtree.add("10.0.0.0/16") rnode = rtree.add("10.0.0.0", 16) rnode = rtree.add(network = "10.0.0.0", masklen =...
Implements a Dockerfile and adjusts the Makefile for automated .deb package building in Traefik This commit introduces a Dockerfile configured for Ubuntu 24, enhancing the environment setup and handling of...