export http_proxy=http://proxy_ip:port #代表http代理
export https_proxy=http://proxy_ip:port #代表https代理
export ftp_proxy=http://proxy_ip:port #代表ftp代理
然后执行source /etc/profile 即可。
使用curl www.google.com 或者 wget www.google.com命令
注意不能使用ping命令,因为ping走的是icmp协议,这里是不可行的。
在ubuntu桌面上点击【系统设置】在【系统设置】对话框,打开【网络】
在【网络】对话框中,点击【网络代理】
代理【方法】选手动;【HTTP代理】输入你的代理服务器IP以及端口。然后【应用到整个系统】
在ubuntu桌面上点击【FIREFOX浏览器】
依次打开【编辑】-【首选项】
在【firefox首选项】对话框中,依次点击【高级】-【网络】-【设置】
在【连接设置】对话框中,选择【使用系统代理设置】,然后确定即可上网了
终端命令行;
设置代理:
export http_proxy=http://172.16.2.16:3199
export https_proxy=http://172.16.2.16:3199
取消代理设置:
unset http_proxy
unset https_proxy
临时有效
1、添加代理
export http_proxy=http://proxyAddress:port
export https_proxy=http://proxyAddress:port
2、查看代理
env |grep -i proxy
3、清除代理
unset http_proxy
unset https_proxy
原文链接:https://blog.csdn.net/zhangh571354026/article/details/123851518
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)