If you are setting up a router, get a real cheap butt CISCO router. Shouldn't cost you more than 100 bucks. However messing around VPT trunking is a fun experience and you can learn quite a lot from that.
ddns-update-style none;log-facility local7;subnet 192.168.1.0 netmask 255.255.255.0 { use-host-decl-names on; option subnet-mask 255.255.255.0; option broadcast-address 192.168.1.255; option routers 192.168.1.254; option domain-name "vssnet"; option domain-name-servers 192.168.1.1; next-server 192.168.1.1; group { filename "/pxelinux.0"; host toaster { hardware ethernet xx:xx:xx:xx:xx:xx; fixed-address 192.168.1.7; } host aga { hardware ethernet xx:xx:xx:xx:xx:xx; fixed-address aga.vssnet; option root-path "teapot:/ws/aga"; #option root-options "nfsv4,rdirplus,hard,intr"; filename "aga/boot/pxeboot"; } } pool { default-lease-time 600; max-lease-time 7200; range 192.168.1.189 192.168.1.220; }}Things like filename, root-path and so on you can probably ignore since they're for net-booting Linux systems (and discless Linux is frustratingly lethargic anyway, so I'm probably going to ditch that as an idea.) 192.168.1.1 is both my DHCP and DNS server, just to be clear.
ddns-update-style none;log-facility local7;subnet 192.168.1.0 netmask 255.255.255.0 { use-host-decl-names on; option subnet-mask 255.255.255.0; option broadcast-address 192.168.1.255; option routers 192.168.1.254; option domain-name "vssnet"; option domain-name-servers 192.168.1.1; next-server 192.168.1.1; group { filename "/pxelinux.0"; host toaster { hardware ethernet xx:xx:xx:xx:xx:xx; fixed-address 192.168.1.7; } host aga { hardware ethernet xx:xx:xx:xx:xx:xx; fixed-address aga.vssnet; option root-path "teapot:/ws/aga"; #option root-options "nfsv4,rdirplus,hard,intr"; filename "aga/boot/pxeboot"; } } pool { default-lease-time 600; max-lease-time 7200; range 192.168.1.189 192.168.1.220; }}Things like filename, root-path and so on you can probably ignore since they're for net-booting Linux systems (and discless Linux is frustratingly lethargic anyway, so I'm probably going to ditch that as an idea.) 192.168.1.1 is both my DHCP and DNS server, just to be clear.