nouveau fichier : sio2/sisr/PXE/README.me

nouveau fichier : sio2/sisr/PXE/dhcpd.conf
	nouveau fichier : sio2/sisr/PXE/enp0s3
	nouveau fichier : sio2/sisr/PXE/enp0s8
	nouveau fichier : sio2/sisr/PXE/isc-dhcp-server
	nouveau fichier : sio2/sisr/PXE/nftables.conf
This commit is contained in:
Jarod Pauchet
2024-09-16 17:53:29 +02:00
parent 21252118e7
commit 0f6de50a66
6 changed files with 92 additions and 0 deletions

15
sio2/sisr/PXE/dhcpd.conf Normal file
View File

@@ -0,0 +1,15 @@
default-lease-time 600;
max-lease-time 7200;
allow booting;
# in this example, we serve DHCP requests from 192.168.0.(3 to 253)
# and we have a router at 192.168.0.1
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.3 192.168.1.253;
option broadcast-address 192.168.1.255;
option routers 192.168.1.100; # our router
option domain-name-servers 10.121.38.7; # our router has DNS functionality
next-server 192.168.1.100; # our Server
filename "pxelinux.0"; # setting a default, might be wrong for "non defaults"
}