Technické
Netechnické
- Jídlo a pití
Konfigurace DHCP:
-bash-4.1$ cat /etc/dhcpd.conf
default-lease-time 600;
max-lease-time 7200;
subnet 192.168.122.0 netmask 255.255.255.0 {
option routers 192.168.122.1;
option subnet-mask 255.255.255.0;
option domain-name-servers 192.168.11.254;
range 192.168.122.2 192.168.122.253; }
-bash-4.1$