惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Simon Willison's Weblog
Simon Willison's Weblog
P
Privacy International News Feed
www.infosecurity-magazine.com
www.infosecurity-magazine.com
T
Troy Hunt's Blog
Hacker News - Newest:
Hacker News - Newest: "LLM"
Attack and Defense Labs
Attack and Defense Labs
S
Secure Thoughts
V2EX - 技术
V2EX - 技术
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
O
OpenAI News
Cloudbric
Cloudbric
Google Online Security Blog
Google Online Security Blog
Schneier on Security
Schneier on Security
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Help Net Security
Help Net Security
Cyberwarzone
Cyberwarzone
G
GRAHAM CLULEY
L
Lohrmann on Cybersecurity
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Spread Privacy
Spread Privacy
NISL@THU
NISL@THU
N
News and Events Feed by Topic
T
Tenable Blog
S
Security @ Cisco Blogs
N
News and Events Feed by Topic
The Hacker News
The Hacker News
C
CXSECURITY Database RSS Feed - CXSecurity.com
宝玉的分享
宝玉的分享
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
V
Visual Studio Blog
P
Proofpoint News Feed
Webroot Blog
Webroot Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 三生石上(FineUI控件)
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Jina AI
Jina AI
雷峰网
雷峰网
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
L
LangChain Blog
The Register - Security
The Register - Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东

博客园 - OSSSME

网络学习(学堂在线) C/S和B/S 赞美创新,好酸啊。 上海马拉松网上报名网上报名名额已满 ⇒ 报名成功 强制关机后导致VBOX(4.2.16 r86992)的虚拟机不可使用问题的解决MEMO 纪念一下雅虎中国 - 关闭社区服务的通知截图 关于阿里云服务器无外网带宽服务器 使用万网+阿里云服务器(Apache)配置二级域名 【NEWS】 ADempiere发布ADempiere 3.8.0路线图【2013年7月28日】 OSSSME - 开源软件助力中小企业发展 iDempiere VS World iDempiere VS ADempiere 为Drupal7.22添加富编辑器 on Ubuntu 12.04 说说iDempiere = OSGi + ADempiere的OSGi 购买阿里云云服务器( 最小配置) 安装Drupal7.12升级至7.22 2013夏,iDempiere来了 - v1.0c Installers (Devina LTS Release) 2013-06-27 安装Redmine 2.3.0(Ubuntu 12.04 Server) 从源代码制作iDempiere Server安装软件(Ubuntu Desktop 12.04 LTS 64位) iDempiere = OSGi + ADempiere 一款ERP&CRM&SCM系统、助力中小企业发展
用squid配置代理服务器(基于Ubuntu Server 12.04)
OSSSME · 2013-06-27 · via 博客园 - OSSSME

1. 安装squid

    $sudo apt-get install squid -y

    注:安装好后,就可以启动了用/etc/init.d/squid3 start,但是缺省状态是无法使用的。

2.配置

   $/etc/squid/squid.conf

   配置Port

      http_port 3128

      注:建议修改缺省Port

   权限控制

      acl localnet src 192.168.XXX.0/255.255.255.0

      把上面的XXX换成了自己内网想使用的网段

      添加

      http_access allow localnet

  其他的话,我好像就没有做什么了。

3. 启动

    $/etc/init.d/squid3 start

最后,在另外一台机器上,打开Firefox,配置代理服务器信息后就可以访问了。

如果是服务器的话,可以使用下述方法配置代理

$cd ~

$sudo vim ./bashrc

在最后添加2两行信息

http_proxy=http://XXX.XXX.XXX.XXX:XXXX/

export tttp_proxy

保存

执行下述命令后就应该可以了。

$source ~/.bashrc