من آگاه از نانومتر ابزار تنها من آن با استفاده از همراه با درستی اما ایده آل برای چیز دیگری پیدا بنابراین من لازم نیست که تکیه بر درستی دوست دارم. کسی از برنامه هایی که می داند
3 دیدگاه برای “تعویض ابزارهای گرافیکی لینوکس شبکه اختصاصی مجازی?”
دیدگاهها بسته شدهاند.
Just doing a quick yaourt search for openvpn, I see gopenvpn, and qopenvpn. Is there a major reason you don’t like networkmanager?
I don’t know about other GUI tools, but NetworkManager leaks DNS requests no matter how I try to prevent it (it’s a known bug). It’s actually surprisingly easy to connect to VPNs with the terminal, and I’ve not experienced either DNS or IPv6 leaks yet:
sudo openvpn –config path_to_config_file.opvn
I would also recommend setting up a firewall with ufw (uncomplicated fire wall) to only allow connections on tun0 (the VPN tunnel) for maximum security. Just run:
sudo ufw –force reset && sudo ufw default deny incoming && sudo ufw default deny outgoing && sudo ufw allow out on tun0 from any to any && sudo ufw enable
and to disable the firewall, run:
sudo ufw –force reset && sudo ufw default deny incoming && sudo ufw default allow outgoing && sudo ufw enable
Use a VPN router