• 4 Posts
  • 14 Comments
Joined 7 days ago
cake
Cake day: January 24th, 2025

help-circle







  • dunes@feddit.orgOPtoLinuxDebain ssl cert problems
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    edit-2
    6 days ago

    It seems like an odd choice if it’s not a mistake to put it on the first page and it’s not just a HTTP warning it’s an SSL warning that appears quite scary on Chromium browsers.

    But cool to know that apt repos don’t use SSL i knew they verified via signature but fought they had both.






  • Still doesn’t work. My wireguard conf file looks like this.

    Change the HOMENET= to my internal ip range i found with ip addr show.

    [Interface]
    PrivateKey = MyPrivateKey
    Address = 1.1.1.1
    DNS = 1.1.1.1
    
    PostUp = DROUTE=$(ip route | grep default | awk '{print $3}'); HOMENET=172.16.0.0/12; ip route add $HOMENET via $DROUTE;iptables -I OUTPUT -d $HOMENET -j ACCEPT; iptables -A OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
    
    PreDown = HOMENET=172.16.0.0/12; ip route delete $HOMENET; iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT; iptables -D OUTPUT -d $HOMENET -j ACCEPT
    
    [Peer]
    PublicKey = MyPublicKey
    AllowedIPs = 0.0.0.0/0
    Endpoint = 1.1.1.1