Új hozzászólás Aktív témák

  • MasterMark

    titán

    válasz Protezis #10185 üzenetére

    Szuper.

    A dinamikus DNS-t én is úgy csináltam meg amit találtál, annyi hogy kicsit okosabban scriptelve, már nem tudom hol találtam, de itt van:

    #!/usr/bin/env bash
    ###############################################################################
    # File: wg-update-peer.sh #
    ###############################################################################
    # Updates the Public IP address of my peer's Edgerouter running wireguard #
    # #
    # D.C 2021-02-07 - Updated the peer key #
    ###############################################################################

    # ping remote gateway
    sudo ping -c1 10.10.100.1
    if [ $? -eq 0 ]
    then
    echo 'Ping OK'
    exit 0
    else
    sudo wg set wg0 peer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx= endpoint remote.dynamic.dns:51820
    echo 'WireGuard UPDATED'
    exit 0
    fi

    Ez berakva a task-scheduler-be 5 percenkénti futással.

    [ Szerkesztve ]

    Switch Tax

Új hozzászólás Aktív témák