Como alternar facilmente entre os métodos de proxy do terminal

2

Como faço para alternar entre os métodos de proxy (nenhum, manual, automático) e aplicá-lo no sistema a partir do terminal?

    
por Avinash Raj 12.01.2014 / 14:50

2 respostas

4

Alguns exemplos, usando gsettings :

# setting a proxy manual
gsettings set org.gnome.system.proxy.socks host '192.168.10.100'
gsettings set org.gnome.system.proxy.socks port 8080
gsettings set org.gnome.system.proxy mode 'manual'

gsettings set org.gnome.system.proxy mode 'none' # this will disable proxy setting

gsettings set org.gnome.system.proxy mode 'auto' # this will set the proxy automatic
    
por Radu Rădeanu 12.01.2014 / 15:03
0

Ou você pode usar dconf :

dconf write /system/proxy/mode 'none' # this will disable proxy setting
dconf write /system/proxy/mode 'auto' # this will set the proxy automatic
dconf write /system/proxy/mode 'manual' #this will allow you to use the manual settings
dconf write /system/proxy/http/host 'somehost'
dconf write /system/proxy/http/port '1234'
    
por Braiam 12.01.2014 / 16:45