Ar7.cfg

From Fritz!Box

Jump to: navigation, search
AVM Wiki >> Konfiguration >> ar7.cfg @ wehavemorefun   -   Nederlands, Italiano, English
FRITZ!Box-Typen Environment Konfiguration UI-Module Befehle Funktionen Software Lexikon Baustelle

Contents

[edit] Konfiguration

Konfig: ar7.cfg   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
Pfad: /var/flash
Typ: AVM-Konfiguration
Laden: ar7cfgchanged
Konvert: allcfgconv -C ar7
Steuern: -
Funktion: Netzwerk- und Systemkonfiguration.

[edit] Aufgerufen von

[edit] Struktur

[edit] ar7cfg

Sektion: ar7.cfg >> ar7cfg   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Globale Einstellungen.
ar7cfg {
        mode = dsldmode_bridge;
        igddenabled = no;
        igdd_control_enabled = no;
        wan_bridge_with_dhcpc = no;
        wan_bridge_gateway = 192.168.192.1;
        dhcpc_use_static_dns = yes;
        ethmode = ethmode_bridge;
        tcom_targetarch = no;
        vdsl_resalearch = no;
        mtu_cutback_mode = mtumode_auto;
        mtu_cutback = 1500;
        StatisticStartOfMonth = 1;
        enable_mac_override = yes;
        macdsl_override = 00:00:00:00:00:00;
        ipv6mode = ipv6_tunnel;
  • mode
    Konfiguriert den DSL-Modus der Box:
    • dslmode_bridge
      Die FBF baut selbst keine DSL/ATM-Verbindung auf, ermöglicht jedoch an die FBF angeschlossenen Geräten den DSL-Aufbau via PPPoE.
    • dslmode_router
      Die FBF baut selbst eine DSL/ATM-Verbindung auf.
    • dslmode_both
      Die FBF baut eine DSL/ATM-Verbindung auf, angeschlossene Geräte können jedoch zusätzlich eine Verbindung aufbauen. (PPPoE-Passthrough)
    • dsldmode_full_bridge
      Die FBF baut selbst keine DSL/ATM-Verbindung auf, ermöglicht jedoch an die FBF angeschlossenen Geräten den DSL-Aufbau via PPPoE.
  • igddenabled
    Aktiviert den UPnP-Dienst.
  • igdd_control_enabled
    Verleiht dem UPnP-Dienst schreibrechte (z.B. für dynamisches Port-Forwarding).
  • ethmode
    Konfiguriert den Ethernet-Modus der Box:
    • ethmode_router
      Die FBF routet zwischen Ihren Netwerken, konfiguriert in ethinterfaces.
    • ethmode_bridge
      Die FBF agiert als Bridge, konfiguriert in brinterfaces.
[edit] serialcfg
Sektion: ar7.cfg >> serialcfg   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: TODO
        serialcfg {
                mode = serialmode_off;
                number = "*99#";
                provider = "internet.t-mobile";
                username = "$$$$<langer verschlüsselter string>";
                passwd = "$$$$<langer verschlüsselter string>";
                connect_chatscript = "ABORT BUSY ABORT 'NO CARRIER'", 
                                     "ABORT VOICE ABORT 'NO DAILTONE'", 
                                     "ABORT 'NO ANSWER' ABORT DELAYED", 
                                     "ABORT ERROR", "TIMEOUT 20", 
                                     "'' 'AT+cgdcont=1,\"IP\",\"${provider}\"'", 
                                     "OK 'ATDT${number}'", "CONNECT", 
                                     "WAIT 2";
                stay_always_online = no;
                inactivity_timeout = 1m;
        }
[edit] ethinterfaces
Sektion: ar7.cfg >> ethinterfaces   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Konfiguriert die Ethernet Interfaces im Router-Modus.
        ethinterfaces {
                name = "eth0";
                dhcp = no;
                ipaddr = 192.168.178.1;
                netmask = 255.255.255.0;
                dstipaddr = 0.0.0.0;
                dhcpenabled = yes;
                dhcpstart = 0.0.0.0;
                dhcpend = 0.0.0.0;
        } {
                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;
        } {
                name = "usbrndis";
                dhcp = no;
                ipaddr = 192.168.179.1;
                netmask = 255.255.255.0;
                dstipaddr = 0.0.0.0;
                dhcpenabled = yes;
                dhcpstart = 0.0.0.0;
                dhcpend = 0.0.0.0;
        } {
                name = "wlan";
                dhcp = no;
                ipaddr = 192.168.182.1;
                netmask = 255.255.255.0;
                dstipaddr = 0.0.0.0;
                interfaces = "tiwlan0", "wdsup0", "wdsdw0", "wdsdw1", 
                             "wdsdw2", "wdsdw3";
                dhcpenabled = yes;
                dhcpstart = 0.0.0.0;
                dhcpend = 0.0.0.0;
        }
  • name
    Der Name des Interfaces, so wie es in ifconfig erscheint.
    • eth0
      Das LAN-Interface.
    • eth0:0
      Die Rettungs-IP die man am LAN-Anschluss nutzen kann wenn man die IP vergessen hat.
    • usbrndis
      Das USB LAN Interface für Geräte mit USB-Slave Anschluss.
    • wlan
      WLAN benötigt mehrere Interfaces, hier werden die Namen aus interfaces genommen.
  • dhcp
    Bestimmt ob das Interface seine IP Adresse als DHCP-Client bezieht.
  • ipaddr, netmask
    Ist dhcp = no wird hier die statische IP Adresse und Subnetzmaske eingetragen.
  • dstipaddr
    Gibt dem Tunnelendpunkt an.
  • interfaces
    Eine Liste von Interfaces die zusammen eine Bridge bilden.
  • dhcpenabled
    Bestimmt ob das Interface selbst einen DHCP-Server bereitstellt.
  • dhcpstart, dhcpend
    Bestimmt den Bereich aus dem der DHCP-Server Adressen vergibt.
[edit] brinterfaces
Sektion: ar7.cfg >> brinterfaces   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Konfiguriert die Ethernet Interfaces im Bridge-Modus.
        brinterfaces {
                name = "lan";
                dhcp = no;
                ipaddr = 192.168.178.1;
                netmask = 255.255.255.0;
                dstipaddr = 0.0.0.0;
                interfaces = "eth0", "usbrndis", "tiwlan0", "wdsup0", 
                             "wdsdw0", "wdsdw1", "wdsdw2", "wdsdw3";
                dhcpenabled = yes;
                dhcpstart = 0.0.0.0;
                dhcpend = 0.0.0.0;
        } {
                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;
        }
  • name
    Der Name des Interfaces, so wie es in ifconfig erscheint.
    • lan
      Das LAN-Interface.
    • lan:0
      Die Rettungs-IP die man am LAN-Anschluss nutzen kann wenn man die IP vergessen hat.
  • dhcp
    Bestimmt ob das Interface seine IP Adresse als DHCP-Client bezieht.
  • ipaddr, netmask
    Ist dhcp = no wird hier die statische IP Adresse und Subnetzmaske eingetragen.
  • dstipaddr
    Gibt dem Tunnelendpunkt an.
  • interfaces
    Eine Liste weiterer Interfaces die mit in die Bridge kommen.
  • dhcpenabled
    Bestimmt ob das Interface selbst einen DHCP-Server bereitstellt.
  • dhcpstart, dhcpend
    Bestimmt den Bereich aus dem der DHCP-Server Adressen vergibt.
[edit] dslinterface
Sektion: ar7.cfg >> dslinterface   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Konfiguriert das DSL Interface.
        dslinterface {
                name = "dsl";
                dhcp = no;
                ipaddr = 169.254.2.1;
                netmask = 255.255.255.255;
                dstipaddr = 169.254.2.1;
                dhcpenabled = yes;
                dhcpstart = 0.0.0.0;
                dhcpend = 0.0.0.0;
        }
  • name
    Der Name des Interfaces, so wie es in ifconfig erscheint.
  • dhcp
    Bestimmt ob das Interface seine IP Adresse als DHCP-Client bezieht.
  • ipaddr, netmask
    Ist dhcp = no wird hier die statische IP Adresse und Subnetzmaske eingetragen.
  • dstipaddr
    Gibt dem Tunnelendpunkt an.
  • dhcpenabled
    Bestimmt ob das Interface selbst einen DHCP-Server bereitstellt.
  • dhcpstart, dhcpend
    Bestimmt den Bereich aus dem der DHCP-Server Adressen vergibt.
[edit] dslinterface_metric
Sektion: ar7.cfg >> dslinterface_metric   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Konfiguriert die Metrik für das IP Routing.
        dslinterface_metric = 2;
  • dslinterface_metric
    Hier wird die metric für das IP Routing eingestellt. Die Dsl-Metric ist kleiner und hat deshalb Vorrang vor den eths (siehe dhcpclient)
[edit] routes
Sektion: ar7.cfg >> routes   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Konfiguriert statische Routen.
        routes {
                enabled = no;
                ipaddr = 192.168.178.255;
                mask = 255.255.255.0;
                gateway = 192.168.178.1;
                metric = 0;
                dev = "";
        }
[edit] ipbridge
Sektion: ar7.cfg >> ipbridge   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: TODO
        ipbridge {
                enabled = no;
        }
[edit] pppoefw
Sektion: ar7.cfg >> pppoefw   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: TODO
        pppoefw {
                interfaces = "lan", "usbrndis", "eth0", "wlan";
                nofirewall = yes;
                ipnetbiosfilter = yes;
                dnsfilter_for_active_directory = yes;
                hostuniq_filter = "";
                dpconfig {
                        security = dpsec_host;
                        lowinput {
                                policy = "reject";
                                accesslist = 
                                             "permit ip any any connection outgoing-related", 
                                             "permit ip any any connection incoming-related", 
                                             "permit icmp any any";
                        }
                        lowoutput {
                                policy = "permit";
                        }
                        highinput {
                                policy = "permit";
                        }
                        highoutput {
                                policy = "permit";
                                accesslist = 
                                             "reject ip any 242.0.0.0 255.0.0.0", 
                                             "deny ip any host 255.255.255.255", 
                                             "reject ip any 169.254.0.0 255.255.0.0";
                        }
                }
        }
[edit] budget
Sektion: ar7.cfg >> budget   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Konfiguriert die Budget Verwaltung für Volumen oder Zeittarife.
        budget {
                Enabled = no;
                Period = 2;
                VolumeLow = 0;
                VolumeHigh = 0;
                ConnectionTime = 0;
                WarnOnly = yes;
        }
[edit] mcupstream
Sektion: ar7.cfg >> mcupstream   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: TODO
        mcupstream = "internet";
[edit] voip_forwardrules
Sektion: ar7.cfg >> voip_forwardrules   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Port-Forwarding für VoIP.
        voip_forwardrules = "udp 0.0.0.0:5060 0.0.0.0:5060", 
                            "tcp 0.0.0.0:5060 0.0.0.0:5060", 
                            "udp 0.0.0.0:7078+32 0.0.0.0:7078";
[edit] internet_in_nat_rules_enabled
Sektion: ar7.cfg >> internet_in_nat_rules_enabled   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: TODO
        internet_in_nat_rules_enabled = yes;
        internet_out_nat_rules_enabled = yes;
[edit] dslifaces
Sektion: ar7.cfg >> dslifaces   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Konfiguriert die DSL Interfaces für Internet und VoIP
        dslifaces {
                enabled = yes;
                name = "internet";
                dsl_encap = dslencap_inherit;
                dslinterfacename = "dsl";
                no_masquerading = no;
                no_firewall = no;
                pppoevlanauto = no;
                pppoevlanauto_startwithvlan = no;
                ppptarget = "internet";
                etherencapcfg {
                        use_dhcp = yes;
                        use_dhcp_if_not_encap_ether = no;
                        ipaddr = 0.0.0.0;
                        netmask = 0.0.0.0;
                        gateway = 0.0.0.0;
                        dns1 = 0.0.0.0;
                        dns2 = 0.0.0.0;
                        mtu = 0;
                }
                is_mcupstream = yes;
                stay_always_online = no;
                disable_ondemand = no;
                only_route_when_connected = no;
                redial_delay_after_auth_failure = 1m;
                redial_limit = 3;
                redial_after_limit_reached = 10m;
                redial_after_limit_reached_variance = 5m;
                redial_delay_after_low_error = 10s;
                redial_delay_after_ppp_timeout = 10s;
                redial_delay_after_ppp_error = 0w;
                routes_only_for_local = no;
                disable_staticroutes_on_dhcproutes = no;
                ripv2receiver_enabled = no;
                dsldpconfig {
                        security = dpsec_firewall;
                        lowinput {
                                policy = "permit";
                                accesslist = 
                                             "deny ip any 242.0.0.0 255.0.0.0", 
                                             "deny ip any host 255.255.255.255";
                        }
                        lowoutput {
                                policy = "permit";
                        }
                        highinput {
                                policy = "permit";
                        }
                        highoutput {
                                policy = "permit";
                                accesslist = 
                                             "reject ip any 242.0.0.0 255.0.0.0", 
                                             "deny ip any host 255.255.255.255", 
                                             "reject ip any 169.254.0.0 255.255.0.0";
                        }
                        forwardrules = "udp 0.0.0.0:5060 0.0.0.0:5060";
                }
        } {
                enabled = yes;
                name = "voip";
                dsl_encap = dslencap_inherit;
                dslinterfacename = "dsl";
                no_masquerading = no;
                no_firewall = no;
                pppoevlanauto = no;
                pppoevlanauto_startwithvlan = no;
                ppptarget = "voip";
                etherencapcfg {
                        use_dhcp = yes;
                        use_dhcp_if_not_encap_ether = no;
                        ipaddr = 0.0.0.0;
                        netmask = 0.0.0.0;
                        gateway = 0.0.0.0;
                        dns1 = 0.0.0.0;
                        dns2 = 0.0.0.0;
                        mtu = 0;
                }
                is_mcupstream = no;
                stay_always_online = yes;
                disable_ondemand = no;
                only_route_when_connected = no;
                redial_delay_after_auth_failure = 1m;
                redial_limit = 3;
                redial_after_limit_reached = 10m;
                redial_after_limit_reached_variance = 5m;
                redial_delay_after_low_error = 10s;
                redial_delay_after_ppp_timeout = 10s;
                redial_delay_after_ppp_error = 0w;
                routes_only_for_local = no;
                tcclassroutes = "sipdns", "sip", "rtp";
                disable_staticroutes_on_dhcproutes = no;
                ripv2receiver_enabled = no;
                dsldpconfig {
                        security = dpsec_firewall;
                        lowinput {
                                policy = "permit";
                                accesslist = "permit udp any any", 
                                             "permit icmp any any", 
                                             "deny ip any host 255.255.255.255", 
                                             "reject ip any any";
                        }
                        lowoutput {
                                policy = "permit";
                        }
                        highinput {
                                policy = "permit";
                        }
                        highoutput {
                                policy = "permit";
                                accesslist = "permit udp any any", 
                                             "reject ip any any";
                        }
                        forwardrules = "udp 0.0.0.0:5060 0.0.0.0:5060";
                }
        }

Sonderfall für FBF FON WLAN 7050 ??? fixme ??? Scheint das tatsächliche outgoing Interface Richtung DSL zu sein. Dsld NATed angeblich alle Pakete, die Richtung dsl Interface gehen. Darin liegt das Problem, das die FBF FON WLAN 7050 als ATA keine Adressen mehr NATed (kein iptables und der dsld arbeitet auf den eths nicht).

Also ist es nicht möglich FBF 7050 als ATA und als DSL-Modem gleichzeitig zu nutzen?

[edit] targets
Sektion: ar7.cfg >> targets   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Konfiguriert die DSL-Zugangsdaten für Internet und VoIP.
        targets {
                type = pppcfg_target_internet;
                name = "internet";
                only_crypt_auth = no;
                local {
                        username = "";
                        passwd = "";
                }
                remoteauth = pppcfg_authtype_chap;
                remoteauth_only_on_incoming = yes;
                remote {
                }
                inactivity_timeout = 5m;
                bUseChargeInterval = no;
                nChargeInterval = 1m;
                lcpecho_disconnect_mode = lcpecho_auto;
                logicaldisconnect_with_physical = yes;
                disconnect_timeout = 0w;
                finaldisconnectcall = no;
                ipnetbiosspoofing = no;
                ipnetbiosfilter = yes;
                dnsfilter_for_active_directory = no;
                no_outgoing_calls = no;
                coso = pppcfg_coso_caller;
                callback_delay = 1s;
                icbmode = pppcfg_icbmode_none;
                ocbmode = pppcfg_ocbmode_none;
                mscbprefered = no;
                multilink {
                        extra_static_channels = 0;
                        max_channels = 1;
                        automatic = no;
                        automatic_param {
                                window = 20s;
                                add_percent = 85;
                                drop_percent = 70;
                                sportlich = no;
                        }
                }
                header_compression = yes;
                data_compression = pppcfg_datacomp_auto;
                stac_reset_with_history_number = no;
                encryption = pppcfg_crypt_none;
                inactivity_prevention_interval = 0w;
                new_ipaddr_on_connect = no;
                my_ipaddr = 0.0.0.0;
                his_ipaddr = 0.0.0.0;
                overwrite_dns1 = 192.168.192.1;
                overwrite_dns2 = 192.168.192.1;
                bVolumeRoundUp = no;
                VolumeRoundUpBytes = 0;
                bProviderDisconnectPrevention = yes;
                ProviderDisconnectPreventionInterval = 1d;
                ProviderDisconnectPreventionHour = 4;
                bProviderDisconnectPreventionHourSet = yes;
                passiv_on_outgoing = no;
                mode6 = mode6_off;
        } {
                type = pppcfg_target_internet;
                name = "voip";
                only_crypt_auth = no;
                local {
                        username = "";
                        passwd = "";
                }
                remoteauth = pppcfg_authtype_chap;
                remoteauth_only_on_incoming = yes;
                remote {
                }
                inactivity_timeout = 0w;
                bUseChargeInterval = no;
                nChargeInterval = 1m;
                lcpecho_disconnect_mode = lcpecho_auto;
                logicaldisconnect_with_physical = yes;
                disconnect_timeout = 0w;
                finaldisconnectcall = no;
                ipnetbiosspoofing = no;
                ipnetbiosfilter = yes;
                dnsfilter_for_active_directory = no;
                no_outgoing_calls = no;
                coso = pppcfg_coso_caller;
                callback_delay = 1s;
                icbmode = pppcfg_icbmode_none;
                ocbmode = pppcfg_ocbmode_none;
                mscbprefered = no;
                multilink {
                        extra_static_channels = 0;
                        max_channels = 1;
                        automatic = no;
                        automatic_param {
                                window = 20s;
                                add_percent = 85;
                                drop_percent = 70;
                                sportlich = no;
                        }
                }
                header_compression = yes;
                data_compression = pppcfg_datacomp_auto;
                stac_reset_with_history_number = no;
                encryption = pppcfg_crypt_none;
                inactivity_prevention_interval = 0w;
                new_ipaddr_on_connect = no;
                my_ipaddr = 0.0.0.0;
                his_ipaddr = 0.0.0.0;
                overwrite_dns1 = 0.0.0.0;
                overwrite_dns2 = 0.0.0.0;
                bVolumeRoundUp = no;
                VolumeRoundUpBytes = 0;
                bProviderDisconnectPrevention = yes;
                ProviderDisconnectPreventionInterval = 1d;
                ProviderDisconnectPreventionHour = 4;
                bProviderDisconnectPreventionHourSet = yes;
                passiv_on_outgoing = no;
                mode6 = mode6_off;
        }
[edit] dslglobalconfig
Sektion: ar7.cfg >> dslglobalconfig   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: TODO
        dslglobalconfig {
                autodetect = yes;
                autodetectparams {
                        nround = 2;
                        timeout = 3s;
                        npacket = 1;
                }
                pppoeiface = "eth0";
                speed_in_netto = 14000;
                speed_out_netto = 800;
                manual_speed = no;
                connect_delay_when_synced = 3s;
                sync_lost_delay = 0w;
                default_tcom_vlan = 7;
                templates {
                        VPI = 1;
                        VCI = 32;
                        retries = 7;
                        encap = dslencap_pppoe;
                } {
                        VPI = 8;
                        VCI = 35;
                        retries = 0;
                        encap = dslencap_pppoe;
                } {
                        VPI = 8;
                        VCI = 48;
                        retries = 0;
                        encap = dslencap_pppoe;
                } {
                        VPI = 8;
                        VCI = 48;
                        retries = 0;
                        encap = dslencap_pppoa;
                } {
                        VPI = 8;
                        VCI = 48;
                        retries = 0;
                        encap = dslencap_pppoa_llc;
                } {
                        VPI = 8;
                        VCI = 67;
                        retries = 0;
                        encap = dslencap_pppoa;
                } {
                        VPI = 8;
                        VCI = 67;
                        retries = 0;
                        encap = dslencap_pppoa_llc;
                } {
                        VPI = 8;
                        VCI = 64;
                        retries = 0;
                        encap = dslencap_pppoa;
                } {
                        VPI = 8;
                        VCI = 36;
                        retries = 0;
                        encap = dslencap_pppoe;
                } {
                        VPI = 0;
                        VCI = 35;
                        retries = 0;
                        encap = dslencap_pppoa;
                } {
                        VPI = 0;
                        VCI = 35;
                        retries = 0;
                        encap = dslencap_pppoa_llc;
                } {
                        VPI = 0;
                        VCI = 35;
                        retries = 0;
                        encap = dslencap_pppoe;
                } {
                        VPI = 9;
                        VCI = 35;
                        retries = 0;
                        encap = dslencap_pppoe;
                } {
                        VPI = 1;
                        VCI = 32;
                        retries = 0;
                        encap = dslencap_pppoa;
                } {
                        VPI = 1;
                        VCI = 32;
                        retries = 0;
                        encap = dslencap_pppoa_llc;
                } {
                        VPI = 0;
                        VCI = 32;
                        retries = 0;
                        encap = dslencap_pppoe;
                } {
                        VPI = 0;
                        VCI = 32;
                        retries = 0;
                        encap = dslencap_pppoa;
                } {
                        VPI = 0;
                        VCI = 32;
                        retries = 0;
                        encap = dslencap_pppoa_llc;
                } {
                        VPI = 0;
                        VCI = 34;
                        retries = 0;
                        encap = dslencap_pppoe;
                } {
                        VPI = 0;
                        VCI = 34;
                        retries = 0;
                        encap = dslencap_pppoa;
                } {
                        VPI = 0;
                        VCI = 34;
                        retries = 0;
                        encap = dslencap_pppoa_llc;
                } {
                        VPI = 0;
                        VCI = 33;
                        retries = 0;
                        encap = dslencap_pppoe;
                } {
                        VPI = 8;
                        VCI = 32;
                        retries = 0;
                        encap = dslencap_pppoe;
                } {
                        VPI = 8;
                        VCI = 32;
                        retries = 0;
                        encap = dslencap_pppoa;
                } {
                        VPI = 8;
                        VCI = 32;
                        retries = 0;
                        encap = dslencap_pppoa_llc;
                } {
                        VPI = 0;
                        VCI = 38;
                        retries = 0;
                        encap = dslencap_pppoa;
                } {
                        VPI = 0;
                        VCI = 38;
                        retries = 0;
                        encap = dslencap_pppoa_llc;
                } {
                        VPI = 8;
                        VCI = 35;
                        retries = 0;
                        encap = dslencap_pppoa;
                } {
                        VPI = 8;
                        VCI = 35;
                        retries = 0;
                        encap = dslencap_pppoa_llc;
                } {
                        VPI = 0;
                        VCI = 81;
                        retries = 0;
                        encap = dslencap_pppoe;
                } {
                        VPI = 0;
                        VCI = 81;
                        retries = 0;
                        encap = dslencap_pppoa;
                } {
                        VPI = 0;
                        VCI = 81;
                        retries = 0;
                        encap = dslencap_pppoa_llc;
                } {
                        VPI = 8;
                        VCI = 81;
                        retries = 0;
                        encap = dslencap_pppoe;
                } {
                        VPI = 8;
                        VCI = 81;
                        retries = 0;
                        encap = dslencap_pppoa;
                } {
                        VPI = 8;
                        VCI = 81;
                        retries = 0;
                        encap = dslencap_pppoa_llc;
                } {
                        VPI = 0;
                        VCI = 100;
                        retries = 0;
                        encap = dslencap_pppoe;
                } {
                        VPI = 0;
                        VCI = 100;
                        retries = 0;
                        encap = dslencap_pppoa;
                } {
                        VPI = 0;
                        VCI = 100;
                        retries = 0;
                        encap = dslencap_pppoa_llc;
                } {
                        VPI = 1;
                        VCI = 50;
                        retries = 0;
                        encap = dslencap_pppoa;
                } {
                        VPI = 1;
                        VCI = 50;
                        retries = 0;
                        encap = dslencap_pppoe;
                }
                MaxDownstreamRate = 0;
                MaxUpstreamRate = 0;
                RFI = 0;
                DownstreamBlackoutBandStart = 0;
                DownstreamBlackoutBandEnd = 0;
                ControlBitfield = 0;
                DownstreamMarginOffset = 0;
                DownstreamPcbOffset = 0;
                UpstreamPcbOffset = 0;
                DiagnosticEnabled = no;
                DSLMode = 0;
                IsDSLModeSet = no;
        }
        saved_non_ata_ip_config {
                ipaddr = 192.168.178.1;
                netmask = 255.255.255.0;
                dns1 = 192.168.180.1;
                dns2 = 192.168.180.2;
                overwrite_dns1 = 0.0.0.0;
                overwrite_dns2 = 0.0.0.0;
        }
        accesslist_version = 3;
        tr069discover_vlancfg {
                vlanencap = vlanencap_none;
                vlanid = 0;
                vlanprio = 0;
        }
}

pppoeiface: Soll die FBF FON WLAN 7050 als ATA laufen, dann muss man diese Zeile einfügen. Leider dann kein NAT mehr.

[edit] servercfg

Sektion: ar7.cfg >> servercfg   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Wählt die DNS-Server und einen optionalen hostname Alias.
servercfg {
        hostname = "(none)";
        dns1 = 192.168.192.1;
        dns2 = 192.168.192.1;
}
  • hostname
    Optionaler hostname, standard = "(none)", wird in /etc/hosts als Alias für fritz.box hinzugefügt.

[edit] websrv

Sektion: ar7.cfg >> websrv   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Konfiguriert den Webserver und Zugansdaten für Fernadministration.
websrv {
        port = "80";
        https_port = "";
        read_timeout = 15m;
        request_timeout = 30s;
        keepalive_timeout = 5m;
        nokeepalive = "*";
        errordir = "/usr/www/html/errors";
        webdir = "/usr/www";
        cgidir = "cgi-bin";
        indexfn = "index.var", "index.htm", "index.html";
        users {
                username = "$$$$<langer verschlüsselter string>";
                passwd = "$$$$<langer verschlüsselter string>";
        }
        users_only_for_https = yes;
}

[edit] ipv6

Sektion: ar7.cfg >> ipv6   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: IPv6 Einstellungen
ipv6 {
        ulamode = ulamode_dynamic;
        use_default_ula = yes;
        ula = fd00::;
        use_fixed_mtu = no;
        fixed_mtu = 1280;
        radv {
                MinRtrAdvInterval = 450;
                MaxRtrAdvInterval = 600;
                AdvDefaultLifetime = 1800;
                PreferedLifeTime = 3600;
                ValidLifeTime = 7200;
        }
        sixxs {
                ticserver = "tic.sixxs.net";
        }
        labconfig {
                enable = no;
                radv_GUA_disable = no;
                radv_overwrite_liftimes = no;
                radv_overwrite_prefered_lifetime = 1800;
                radv_overwrite_valid_lifetime = 3600;
                radv_overwrite_flags = no;
                radv_set_mflag = no;
                radv_set_oflag = yes;
                dhcpv6wanmode = dhcpv6wanmode_statefull;
        }
}

[edit] dhcpserver

Sektion: ar7.cfg >> dhcpserver   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: DHCP-Lease Zeiten für die DHCP-Server.
dhcpserver {
        saveinterval = 1h;
        generic {
                default_lease_time = 10d;
                max_lease_time = 13d;
        }
}

[edit] dhcpclient

Sektion: ar7.cfg >> dhcpclient   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Metric für IP Routing zu eths, die von Extern eine IP Adresse bekommen haben. mertic = 9 und damit geringere Priorität als die Metric auf dem DSL Interface. (siehe dslinterface_metric)
dhcpclient {
        metric = 9;
}

[edit] dnsserver

Sektion: ar7.cfg >> dnsserver   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Grundeinstellungen für die DNS-Proxies.
dnsserver {
        cache_maxKB = 16;
        negative_ttl = 5m;
}

[edit] ddns

Sektion: ar7.cfg >> ddns   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Dynamic DNS Einstellungen.
ddns {
        accounts {
                enabled = no;
                domain = "";
                iface = 0;
                username = "";
                passwd = "";
                ddnsprovider = "dyndns.org";
        }
        types {
                type = "dyndns";
                url = "/nic/update?system=dyndns&hostname=<domain>&myip=<ipaddr>&wildcard=NOCHG";
        } {
                type = "dyndns-custom";
                url = "/nic/update?system=custom&hostname=<domain>&myip=<ipaddr>&wildcard=NOCHG";
        } {
                type = "dyndns-statdns";
                url = "/nic/update?system=statdns&hostname=<domain>&myip=<ipaddr>&wildcard=NOCHG";
        } {
                type = "noip";
                url = "/ducupdate.php?update=<b64>username=<username>&pass=<pass>&h[]=<domain>&ip=<ipaddr></b64>";
        } {
                type = "2mydns";
                url = "/dyn.asp?username=<username>&password=<pass>&hostname=<domain>&myip=<ipaddr>";
        } {
                type = "dns4biz";
                url = "/nic/update?hostname=<domain>&myip=<ipaddr>";
        } {
                type = "selfhost";
                url = "/nic/update?myip=<ipaddr>&host=<domain>&textmodi=1&http_status=1";
        } {
                type = "strato";
                url = "/nic/update?hostname=<domain>";
        } {
                type = "userdefined";
                url = "";
        } {
                type = "TZO";
                url = "/webclient/tzoperl.html?TZOName=<domain>&Email=<username>&TZOKey=<pass>&IPAddress=<ipaddr>&system=tzodns&info=1";
        } {
                type = "namemaster";
                url = "/dyn.php?username=<username>&password=<pass>&hostname=<domain>";
        }
        provider {
                name = "dyndns.org";
                type = "dyndns";
                livedelay = 0w;
                touchtime = 30d;
                server = "members.dyndns.org";
                infourl = "http://www.dyndns.org/";
        } {
                name = "dyndns.org-custom";
                type = "dyndns-custom";
                livedelay = 0w;
                touchtime = 30d;
                server = "members.dyndns.org";
                infourl = "http://www.dyndns.org/";
        } {
                name = "dyndns.org-statdns";
                type = "dyndns-statdns";
                livedelay = 0w;
                touchtime = 30d;
                server = "members.dyndns.org";
                infourl = "http://www.dyndns.org/";
        } {
                name = "No-IP.com";
                type = "noip";
                livedelay = 4m;
                touchtime = 0w;
                server = "dynupdate.no-ip.com:8245";
                infourl = "http://www.no-ip.com/";
        } {
                name = "2myDNS";
                type = "2mydns";
                livedelay = 0w;
                touchtime = 0w;
                server = "dyn.2mydns.com";
                infourl = "http://www.2mydns.com/";
        } {
                name = "DNS4BIZ.DE Premium";
                type = "dns4biz";
                livedelay = 0w;
                touchtime = 0w;
                server = "au-eu.dns4biz.net";
                infourl = "http://www.dns4biz.com/services_avm.php3";
        } {
                name = "DNS4BIZ.DE Business";
                type = "dns4biz";
                livedelay = 0w;
                touchtime = 0w;
                server = "au-eu.dns4biz.biz";
                infourl = "http://www.dns4biz.com/services_avm.php3";
        } {
                name = "selfhost.de";
                type = "selfhost";
                livedelay = 0w;
                touchtime = 0w;
                server = "carol.selfhost.de";
                infourl = "http://www.selfhost.de";
        } {
                name = "STRATO AG";
                type = "strato";
                livedelay = 4m;
                touchtime = 0w;
                server = "dyndns.strato.com";
                infourl = "http://www.strato.de/webhosting/index.html";
        } {
                name = "Benutzerdefiniert";
                type = "userdefined";
                livedelay = 4m;
                touchtime = 0w;
                server = "";
                infourl = "http://";
        } {
                name = "TZO.com";
                type = "TZO";
                livedelay = 0w;
                touchtime = 0w;
                server = "rh.tzo.com";
                infourl = "http://www.tzo.com";
        } {
                name = "namemaster.de";
                type = "namemaster";
                livedelay = 0w;
                touchtime = 0w;
                server = "dynup.de";
                infourl = "http://www.namemaster.de";
        }
}

[edit] webui

Sektion: ar7.cfg >> webui   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Webserver Passwort und Userinterface Grundeinstellungen.
webui {
        username = "";
        password = "$$$$<langer verschlüsselter string>";
        expertmode = yes;
        wizard_completed = no;
        event_filter = 0;
        read_access_without_login = no;
}

[edit] fminiframework

Sektion: ar7.cfg >> fminiframework   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Aktivierung der FRITZ! Mini Unterstützung (minid).
fminiframework {
        enabled = no;
        converted = yes;
}

[edit] capiovertcp

Sektion: ar7.cfg >> capiovertcp   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Aktivierung des CAPI over TCP Servers (capiotcp_server).
capiovertcp {
        enabled = no;
        maxctrl = 1;
        port = 5031;
}

[edit] emailnotify

Sektion: ar7.cfg >> emailnotify   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Konfiguration der Push-Mail Funktion.
emailnotify {
        enabled = no;
        interval = daily;
        From = "";
        To = "";
        SMTPServer = "";
        accountname = "";
        passwd = "";
        show_eventlist = yes;
        show_voipstat = yes;
        show_kidsstat = yes;
        show_onlinecntstat = yes;
        show_fonstat = yes;
        starttls = yes;
        dsl_pushmail_mode = 0;
}

[edit] night_time_control

Sektion: ar7.cfg >> night_time_control   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Konfiguration der Nachtschaltung.
night_time_control {
        enabled = yes;
        time_on = "23:59";
        time_off = "00:00";
        ring_blocked = yes;
}

[edit] ntpclient

Sektion: ar7.cfg >> ntpclient   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Wählt den Timeserver für den SNTP-Client (multid).
ntpclient {
        server_list = "0.europe.pool.ntp.org";
}

[edit] led

Sektion: ar7.cfg >> led   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Konfiguriert die Info-LED.
led {
        infoled_reason = 13;
}

[edit] timezone_manual

Sektion: ar7.cfg >> timezone_manual   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Optionale Zeitzonenwahl.
timezone_manual {
        enabled = no;
        offset = 0;
        dst_enabled = no;
        TZ_string = "";
        name = "";
}

[edit] mrouter

Sektion: ar7.cfg >> mrouter   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: TODO
mrouter {
        igmp_version_for_upstream = 3;
        igmp_version_for_other = 3;
        igmp_prio = 48;
}

[edit] rip

Sektion: ar7.cfg >> rip   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: TODO
rip {
}

[edit] cpu_schedule

Sektion: ar7.cfg >> cpu_schedule   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Vermutung: Priorisierung der CPU-Taktreglungs-Aufweckfunktion.
cpu_schedule {
        dsl_token = 5000;
        lan_token = 20000;
}

[edit] TR_064

Sektion: ar7.cfg >> TR_064   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: TR-064 Konfiguration.
TR_064 {
        enabled = no;
        username = "dslf-config";
        persistent_data = "";
}

[edit] landevices

Sektion: ar7.cfg >> landevices   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Liste der bekannten Geräte im lokalen Netzwerk.
landevices {
        landevices {
                ip = 192.168.178.40;
                name = "host1";
                mac = 00:XX:XX:XX:XX:XX;
                medium = medium_ethernet;
        } {
                ip = 192.168.178.41;
                name = "host2";
                mac = 00:00:00:00:00:00;
                medium = medium_wlan;
        } {
                ...
        }
}

[edit] prios

Sektion: ar7.cfg >> prios   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Netzwerkanwendungen für Traffic-Priorisierung.
prios {
        profiles {
                name = "profile_http";
                rules = "TCP 80 0 0 0";
        } {
                name = "profile_ftp";
                rules = "TCP 20 21 0 0";
        } {
                name = "profile_emule";
                rules = "TCP 0 0 4662 0", "UDP 0 0 4672 0";
        } {
                name = "profile_torrent";
                rules = "TCP 0 0 6881 6999";
        } {
                name = "profile_rdp";
                rules = "TCP 3389 0 0 0";
        } {
                name = "profile_ssh";
                rules = "TCP 0 0 22 0";
        } {
                name = "profile_telnet";
                rules = "TCP 0 0 23 0";
        }
}

[edit] nqos

Sektion: ar7.cfg >> nqos   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Regeln für Traffic-Priorisierung und QoS.
nqos {
        version = 3;
        macaddr_whitelist_enabled = no;
        bridge_with_switch_separation = yes;
        defaultresult {
                tos = -1;
                vlan_prio = -1;
                queueref = "default";
        }
        appls {
                enabled = yes;
                name = "sip-appl";
                protocol = qos_classifier_appl_sip;
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "hrealtime";
                }
        }
        classifiers {
                enabled = yes;
                name = "clfy_voip";
                type = qos_cfg_internal;
                iface = qos_local;
                rule = "localmark sip";
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "hrealtime";
                }
        } {
                enabled = yes;
                name = "clfy_voip";
                type = qos_cfg_internal;
                iface = qos_local;
                rule = "localmark rtp";
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "hrealtime";
                }
        } {
                enabled = no;
                name = "tr069";
                type = qos_cfg_hidden;
                iface = qos_local;
                rule = "localmark sipdns,ntpdns,tr069dns,tr069";
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "hprio";
                }
        } {
                enabled = yes;
                name = "igmp";
                type = qos_cfg_hidden;
                iface = qos_local;
                rule = "localmark igmp";
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "ifacectl";
                }
        } {
                enabled = yes;
                name = "webdav";
                type = qos_cfg_hidden;
                iface = qos_local;
                rule = "localmark webdav";
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "low";
                }
        } {
                enabled = yes;
                name = "mstv";
                type = qos_cfg_hidden;
                iface = qos_lan;
                rule = "udp.dport 43962,47806";
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "hprio";
                }
        } {
                enabled = yes;
                name = "icmp-v6";
                type = qos_cfg_hidden;
                iface = qos_lan;
                rule = "ip.proto IPv6-ICMP";
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "hprio";
                }
        } {
                enabled = yes;
                name = "icmp";
                type = qos_cfg_hidden;
                iface = qos_lan;
                rule = "ip.proto icmp";
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "hprio";
                }
        } {
                enabled = yes;
                name = "dns";
                type = qos_cfg_hidden;
                iface = qos_lan;
                rule = "udp.dport 53";
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "hprio";
                }
        } {
                enabled = yes;
                name = "clfy_voip";
                type = qos_cfg_internal;
                iface = qos_lan;
                rule = "udp.dport 5060";
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "hrealtime";
                        applref = "sip-appl";
                }
        } {
                enabled = yes;
                name = "clfy_fmedia";
                type = qos_cfg_internal;
                iface = qos_lan;
                rule = "dhcpoption 12 FRITZ!Media* mediatab";
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "realtime";
                }
        } {
                enabled = yes;
                name = "clfy_fmedia";
                type = qos_cfg_internal;
                iface = qos_lan;
                rule = "ethsrctab mediatab";
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "realtime";
                }
        } {
                enabled = no;
                name = "clfy_www";
                type = qos_cfg_system;
                iface = qos_lan;
                rule = "ip.proto == tcp ip.len <= 64";
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "none";
                }
        } {
                enabled = no;
                name = "clfy_www";
                type = qos_cfg_system;
                iface = qos_lan;
                rule = "tcp.dest 80,3128,8080 ip.len <= 800";
                result {
                        tos = -1;
                        vlan_prio = -1;
                        queueref = "none";
                }
        }
        queues {
                enabled = yes;
                with_sfq = no;
                type = qos_cfg_system;
                name = "ifacectl";
                iface = qos_wan;
                queue_type = queue_llq;
                precedence = 0;
                weight = 0;
                shapingrate = 0;
                shapingburst = 0;
                allow_more = yes;
                ceilrate = 0;
        } {
                enabled = yes;
                with_sfq = no;
                type = qos_cfg_system;
                name = "hprio";
                iface = qos_wan;
                queue_type = queue_llq;
                precedence = 10;
                weight = 0;
                shapingrate = 0;
                shapingburst = 0;
                allow_more = yes;
                ceilrate = 0;
        } {
                enabled = yes;
                with_sfq = no;
                type = qos_cfg_system;
                name = "hrealtime";
                iface = qos_wan;
                queue_type = queue_llq;
                precedence = 20;
                weight = 0;
                shapingrate = 0;
                shapingburst = 0;
                allow_more = yes;
                ceilrate = 0;
        } {
                enabled = yes;
                with_sfq = yes;
                type = qos_cfg_system;
                name = "realtime";
                iface = qos_wan;
                queue_type = queue_llq;
                precedence = 30;
                weight = 0;
                shapingrate = 0;
                shapingburst = 0;
                allow_more = yes;
                ceilrate = 0;
        } {
                enabled = yes;
                with_sfq = yes;
                type = qos_cfg_system;
                name = "important";
                iface = qos_wan;
                queue_type = queue_llq;
                precedence = 100;
                weight = 90;
                shapingrate = 0;
                shapingburst = 0;
                allow_more = yes;
                ceilrate = 0;
        } {
                enabled = yes;
                with_sfq = yes;
                type = qos_cfg_system;
                name = "default";
                iface = qos_wan;
                queue_type = queue_llq;
                precedence = 100;
                weight = 10;
                shapingrate = 0;
                shapingburst = 0;
                allow_more = yes;
                ceilrate = 0;
        } {
                enabled = yes;
                with_sfq = yes;
                type = qos_cfg_system;
                name = "low";
                iface = qos_wan;
                queue_type = queue_llq;
                precedence = 200;
                weight = 0;
                shapingrate = 0;
                shapingburst = 0;
                allow_more = yes;
                ceilrate = 0;
        }
}

[edit] ethernet_eco

Sektion: ar7.cfg >> ethernet_eco   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Energiespar-Modus der LAN Ports.
ethernet_eco {
        eth0_mode = 2;
        eth1_mode = 2;
        eth2_mode = 2;
        eth3_mode = 2;
}

[edit] unattended_update

Sektion: ar7.cfg >> unattended_update   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: Konfiguration der automatischen Firmwareaktualisierung.
unattended_update {
        update_found = no;
        running_version = "";
        no_update_found_time = "2010-07-02 06:43:56";
        priority = 1;
        check_intervall = 168;
}

[edit] avmlogd

Sektion: ar7.cfg >> avmlogd   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: TODO
avmlogd {
        enabled = no;
}


[edit] provider_default

Sektion: ar7.cfg >> provider_default   -   Freetz   -   IPPW   -   IPPF   -   whmf   -   Web
UI-Modul: TODO
Funktion: TODO
provider_default {
}


[edit] Verschiedenes

[edit] zu dhcpserver

Ich arbeite daran, dass der DHCP Server eine andere DNS IP an die Clients liefert. Der Versuch, an die dhcpd.conf angelehnt, "einfach" domain_name_servers = 192.168.x.y; im generic {} Teil einzutragen war leider ohne Erfolg.

Nach einem ar7cfgchanged bekam ich folgenden Fehler.

dsld: /var/flash/ar7.cfg:739: member domain_name_servers not found in ST_struct dhcpgeneric

Nachdem ja die Sourcen zugänglich sind, werd ich mich mal auf die Suche ST_struct machen - mal sehen, was sich dort findet.

Update: Tjo, Quellcode von dsld scheint nicht verfügbar zu sein... falls ihr dazu etwas wisst, dann lasst es mich wissen.

[edit] Betrachten der ar7cfg

Zum Betrachten der ar7cfg (und anderer Konfigurationsdateien) ruft man in der Fritz!BoxDial Wählhilfe für Mozilla-Firefox die Chrome-url chrome://fritzboxdial/content/getConfig.xul auf und betätigt den "Config export" Button.

Personal tools