Routing einrichten erforderlich

  • Hi


    kurze frage, ich habe mir Raspap mittels

    Code
     curl -sL https://install.raspap.com | bash

    installiert, nun bin ich auf eine Seite gestoßen und zwar diese hier:


    Wireless Access Point


    dort steht ganz unten Routing einrichten:


    ist dieses nun auch erforderlich, nach dem install Script von raspap ?

  • Dein zweiter Link beschreibt eine andere Einrichtung.

    Wenn du dir den Text auf https://raspap.com/ ansiehst, steht dort:

    Quote


    The Quick Installer will complete the steps in the manual installation for you.

    Und du hast den "Quick Installer verwendet.

    Auf der "manual Installation"-Seite findest du


    Quote

    Routing and IP masquerading

    These steps allow WLAN clients to access computers on the main wired eth0 network, and from there the internet. Begin by enabling IP forwarding with the following commands:

    Code
    Code
    echo "net.ipv4.ip_forward=1" | sudo tee /etc/sysctl.d/90_raspap.conf > /dev/null
    sudo sysctl -p /etc/sysctl.d/90_raspap.conf
    sudo /etc/init.d/procps restart

    To enable traffic between clients on the WLAN and the internet, we add two iptables network address translation (NAT) "masquerade" firewall rules. Create these rules and persist them with the following:

    Code
    Code
    sudo iptables -t nat -A POSTROUTING -j MASQUERADE
    sudo iptables -t nat -A POSTROUTING -s 192.168.50.0/24 ! -d 192.168.50.0/24 -j MASQUERADE
    sudo iptables-save | sudo tee /etc/iptables/rules.v4

    Also, warum solltest du, wenn du den Quick-Installer genommen hast, das noch einmal machen?

    Computer ..... grrrrrr

  • Aber ein Problem habe ich noch.


    Und zwar im meinem lokalen Netzwerk sind domains für 2 weitere geräte eingerichtet, wenn ich in meinem lokalen netzwerk (nicht über raspap hotspot) die domains aufrufe klappt das.


    Bin ich aber mit dem hotspot von raspap verbunden, findet er die lokalen domains nicht, nur per ip komme ich dann auf die weiteren Geräte. Würde aber gerne die domains, auch über den hotspot aufrufen können.


    Worin liegt das Problem ?