Multiple subnet / one tftp server

HI,

I have one foreman server with a tftp service … My foreman server has 4
networks interfaces. Each interface is in a different subnet.

How I can configure my foreman (proxies ?) to have the tftp service
working on all subnets ?

Thanks for your anwers/clues …

James

I'm running config like yours and tftpd listens on all interfaces so
thats no problem. Make sure you're dhcpd.conf is correct.

class "ovirt" {
match if substring (hardware,1,8) = 00:1a:4a;
}
subnet 172.10.0.0 netmask 255.255.255.0 {

pool

{

range 172.10.0.100 172.10.0.200;

allow members of "ovirt";

}

PXE Handoff.

next-server 172.10.0.4;

filename "pxelinux.0";

option domain-name-servers 172.10.0.4, 172.1.1.1;

option domain-name "domain.com domain.org";

option subnet-mask 255.255.255.0;

option routers 172.10.0.254;

}

Rinse and repeat for 3 more networks.

Joop

··· On 28-11-2014 1:48, James James wrote: > HI, > > I have one foreman server with a tftp service ... My foreman server > has 4 networks interfaces. Each interface is in a different subnet. > > How I can configure my foreman (proxies ?) to have the tftp service > working on all subnets ? > >