DHCP von AIX nach Linux

stormtide

stormtide

Grünschnabel
Hallo...

Ich sollte hier eine Migration eines DHCP-Konfigurationsfiles vornehmen.
Dir Syntax ist leider völlig anders.
Nicht wirklich ein Problem dachte ich, Script schreiben und das Zeug automatisch umwandeln.
Jetzt habe ich aber leider das Problem, dass einige Optionen nicht klar sind, wozu sie dienen,
Auch mit Google-Recherche habe ich nichts gefunden.
Hier mal die unklaren Optionen:
Code:
network 172.31.0.0 20 |
option 46 0x8 | option netbios-node-type 0x8
option bf "pxboot" | option bootfile-name pxboot
option sa 172.31.x.x | option tftp-server-name srvsoft01
option hd "directory" |
option 54 "172.31.x.x (DHCP-Server) |
option 65 "hallo benutzer" |
option 43 0x123456890ABCDEF (Vendor-Container) |
supportUnlistedClients no |
supportBOOTP yes |
Vor den "|" ist dabei AIX Syntax, dahinter die von Linux.
Ich bitte euch, die Linuxsyntax zu überprüfen und mir die anderen Optionen zu übersetzen, sofern mir denn jemand helfen kann...

Vielen lieben Dank schon im voraus!

Euer Andy
 
Zuletzt bearbeitet:
Ich bin gerade am testen.
eigentlich sollte der Hightsystem-Rechner die DHCP-Informationen bekommen.
Tut er aber nicht.
Was mache ich falsch?
Hier meine dhcpd.conf:
Code:
ddns-update-style none;

option domain-name "domain.ch";
option domain-name-servers 172.31.2.5, 172.31.1.5;
option netbios-name-servers 172.31.3.10, 172.31.3.14;

#Lease-Time: 60s x 60min x 24h
max-lease-time 86400;
default-lease-time 86400;

subnet 172.31.0.0 netmask 255.255.240.0 {
	range 172.31.0.1 172.31.15.254;
	option routers 172.31.0.1;
}

	# Highsystem.net Installation
	host pc004174 {
		hardware ethernet 00:11:22:33:44:55;
		fixed-address 172.31.4.174;
		option tftp-server-name "srvsoft01";
		option bootfile-name "pxboot";
	}


subnet 172.31.246.0 netmask 255.255.255.0 {
	range 172.31.246.1 172.31.246.254;
	option routers 172.31.246.1;
}

	# DHCP-Server
	host pc246036 {
		hardware ethernet 00:11:22:33:44:55;
		fixed-address 172.31.246.36;
	}
 
Zurück
Oben