7490 - Ethernet-Ports auftrennen
An einer 7490 hängt die Astaro Firewall. Um die Funktionen der Fritzbox zu nutzen sollen die Ports eth0..3 und wlan getrennt konfiguriert werden (siehe Schaubild).
Kann das so funktionieren mit den Änderungen der ar7.cfg? Hat es Nachteile/Probleme?
Modifizierte ar7.cfg:
An einer 7490 hängt die Astaro Firewall. Um die Funktionen der Fritzbox zu nutzen sollen die Ports eth0..3 und wlan getrennt konfiguriert werden (siehe Schaubild).
Kann das so funktionieren mit den Änderungen der ar7.cfg? Hat es Nachteile/Probleme?
Code:
eth0
DSL --- FritzBox 7490 ------ Astaro UTM9 -------- Switch ----- PC1
| | | ||------ PC2
| |eth3 | |------- ...
| |-------------------------------------|
|
|-wlan <<<< SSID 1>>>> wireless Clients (dhcp via Astaro)
<<<< SSID 2>>>> wireless Clients
Modifizierte ar7.cfg:
Code:
ethinterfaces {
name = "eth0";
dhcp = no;
ipaddr = 192.168.178.1;
netmask = 255.255.255.0;
dstipaddr = 0.0.0.0;
dhcpenabled = yes;
dhcpstart = 192.168.178.250;
dhcpend = 192.168.178.254;
no_dnsd_static = no;
is_guest = no;
is_hotspot = no;
} {
name = "eth0:0";
dhcp = no;
ipaddr = 169.254.1.1;
netmask = 255.255.0.0;
dstipaddr = 0.0.0.0;
dhcpenabled = yes;
dhcpstart = 0.0.0.0;
dhcpend = 0.0.0.0;
no_dnsd_static = no;
is_guest = no;
is_hotspot = no;
} {
name = "wlan";
dhcp = no;
ipaddr = 192.168.182.1;
netmask = 255.255.255.0;
dstipaddr = 0.0.0.0;
dhcpenabled = yes;
dhcpstart = 0.0.0.0;
dhcpend = 0.0.0.0;
no_dnsd_static = no;
is_guest = no;
is_hotspot = no;
} {
name = "eth3";
dhcp = yes;
ipaddr = 0.0.0.0;
netmask = 0.0.0.0;
dstipaddr = 0.0.0.0;
dhcpenabled = no;
dhcpstart = 0.0.0.0;
dhcpend = 0.0.0.0;
no_dnsd_static = no;
is_guest = no;
is_hotspot = no;
}
brinterfaces {
name = "lan";
dhcp = no;
ipaddr = 192.168.178.1;
netmask = 255.255.255.0;
dstipaddr = 0.0.0.0;
interfaces = "eth0", "eth1", "eth2", "plc";
dhcpenabled = yes;
dhcpstart = 192.168.178.250;
dhcpend = 192.168.178.254;
no_dnsd_static = no;
is_guest = no;
is_hotspot = no;
} {
name = "lan2";
dhcp = yes;
ipaddr = 0.0.0.0;
netmask = 255.255.255.0;
dstipaddr = 0.0.0.0;
interfaces = "eth3", "wlan";
dhcpenabled = no;
dhcpstart = 0.0.0.0;
dhcpend = 0.0.0.0;
no_dnsd_static = no;
is_guest = no;
is_hotspot = no;
} {
name = "lan:0";
dhcp = no;
ipaddr = 169.254.1.1;
netmask = 255.255.0.0;
dstipaddr = 0.0.0.0;
dhcpenabled = yes;
dhcpstart = 0.0.0.0;
dhcpend = 0.0.0.0;
no_dnsd_static = no;
is_guest = no;
is_hotspot = no;
} {
name = "guest";
dhcp = no;
ipaddr = 192.168.99.1;
netmask = 255.255.255.0;
dstipaddr = 0.0.0.0;
interfaces = "wlan_guest", "guest_ct*", "guest_st*";
dhcpenabled = yes;
dhcpstart = 0.0.0.0;
dhcpend = 0.0.0.0;
no_dnsd_static = yes;
is_guest = yes;
is_hotspot = no;
}
Zuletzt bearbeitet: