Ubuntu Installation :: Automatically Configure Apt-get And Proxy?

May 8, 2011

I recently installed Ubuntu 9.04 and I'm having issues with apt-get and proxy configuration. Upon initial install I attempted to set the proxy configuration through the GUI and opted for the "manual proxy" configuration. Part way through entering the proxy server name I decided to use the "automatic proxy" configuration option instead. I checked this radio box and entered the URL to automatically configure the proxy information.

At this point everything seeemed to work fine. I ran "apt-get update" and, partway through the update process, I decided to abort the update by pressing control-c. Now I am unable to use apt-get to perform any updates. It gives me several errors stating it is unable to resolve "www" (which is the partial name of the proxy server I began to enter before deciding to use the auto configuration option).

No problem I thought...I'll just go into "/etc/apt/apt.conf" and change the name. Except the name in the apt.conf file is correct. I brought up "synaptic" and changed the network configuration there (as it had the same issue) and now synaptic works fine. I am also able to use the GUI Update Manager to update my system. Still apt-get update fails. Here is one of the error lines it spits out:

[Code]....

View 1 Replies


ADVERTISEMENT

Ubuntu Installation :: Configure Proxy Authentication In Web.xml?

Aug 9, 2010

I intergrated the CAS on Liferay, it is working fine for single service. Now my goal is to configure Proxy Authentication on CAS to authenticate set of Liferay Services. I used the following services for proxy authentication, but unable to validate it.

edu.yale.its.tp.cas.client.filter.proxyCallbackUrl
edu.yale.its.tp.cas.client.filter.authorizedProxy

How to configure Proxy Authentication in web.xml.

View 1 Replies View Related

Networking :: Live Proxy Detection - Switch Over Automatically ?

Jul 30, 2010

In my college many proxy : port (like 144.16.192.245:8080) are using to get Internet connection, performance of each proxy changes, how can i decide which one is working well at particular time. is there any way to switch over them automatically ?

View 2 Replies View Related

Server :: Squid Access / Setup Automatically Get The Proxy Setting As Dhcp?

Jun 15, 2011

I my office I have configure dhcp in my centos sever
eth0 for adsl-setup
eth1 for lan 172.16.0.4
I am using squid proxy server for internet access,

in my office all are using laptop through wifi , so i need to configure the browser proxy setting for accessing internet.

is there any way to setup automatically get the proxy setting as dhcp. I have tried transparent proxy but no success.

View 3 Replies View Related

Ubuntu Networking :: How To Configure Squid Proxy Server

Mar 16, 2010

how-to configure squid proxy server. I still haven't been able to find a solution. I want to set up squid as a open http proxy server. So people from other networks can connect through the proxy without having to login.Do I have to use iptables to reroute http traffic to squids proxy port? I have forwarded the port in my ISP modem so I know thats working, its the squid config that has flaws or iptables locally.

View 1 Replies View Related

Server :: Install And Configure Squid Proxy In Ubuntu 10.10?

Nov 12, 2010

I want to install squid proxy and iptables in ubuntu 10.10 and ip tables.

View 5 Replies View Related

General :: Live Proxy Detection Decide Which One Is Working Well At Particular Time - Switch Over Automatically?

Jul 30, 2010

In my college many proxy : port (like 144.16.192.245:8080)are using to get Internet connection, performance of each proxy changes, how can i decide which one is working well at particular time. is there any way to switch over them automatically?

View 9 Replies View Related

Ubuntu Servers :: Configure A POP3 / IMAP Proxy Server?

Jan 25, 2011

This is my first post to the forum

I've recently migrated my office PCs to ubuntu. My server doesn't server any big purpose but to provide Internet Connection to the rest of the nodes. Things were quite easier during the windows era using ICS.

Even in Ubuntu we were able to do it using the "shared network" option, simple & straight forward. But things got complicated only after installing "squid". Needless to say it brought in a lot of add ons as far as the http proxy serving is concerned & we are enjoying a better internet(http only) connectivity without any doubt. But we are not able to use our email clients, MS Outlook or Thunderbird

But to best of my knowledge squid strictly is a http proxy hence doesn't support handling requests on ports other than 80. (465 & 995 in my case)

Now I have two queries, 1. Can "Squid" really be used to do what I want here??? using iptables, port forwarding or any other mean
& 2. Can any one suggest a good pop3/imap proxy as good as squid is.

View 3 Replies View Related

Fedora Networking :: How To Configure 14 As Caching Proxy

Apr 3, 2011

ran an internet cafe and last week my windows server got fried because of power surge. Now i got Fedora 14 running on another PC and i want to set it up as a full caching proxy server, so other computers can connect through it to the internet. I have 2 network cards inside.I'm really new to Linux and now learning my way around. I managed to install squid but don't know how to configure it to suit the purpose above

View 1 Replies View Related

Networking :: Configure Proxy & Firewall On SuSE 11.4?

Apr 6, 2011

I need to restrict access to the internet and keep unwanted software out of LAN with 45 workstations at the school I teach at. I thought about configuring a proxy and firewall on SuSE 11.4?

View 9 Replies View Related

General :: How To Configure Proxy Server On Linux

May 19, 2010

I am new to Linux and need to configure a Linux machine with any server. I plan to configure Proxy server. What should I do?

View 1 Replies View Related

General :: Configure Transparent Proxy On Radhat 6.0?

Apr 21, 2011

how to configure transparent proxy radhad 6.0? I will show what i do

1. i configure on squid

acl lan srv 192.168.1.0/24
http_access allow lan
for port i use default
http_port 3128

2. i set rule on iptables

iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3128

View 1 Replies View Related

Server :: Trying To Configure Apache Reverse Proxy

Oct 4, 2010

I have a question to masters of Apache. In my operating system (CentOS 5) I have installed two Apaches. One is Apache (port 80) from repository where I planning to configure proxy and second one is Apache integrated(port 8090) with KnowledgeTree software. The problem is that when I am trying to configure proxy reverse it simply doesn't work.

This is link to KnowledgeTree software:
- http://127.0.0.1:8090/knowledgeTree

This link I would like to rewrite with proxy like this:
https://myserver.com/knowledgeTree
(HTTPS dont forget)

In my ssl.conf in VirtualHost part I have created something like this:
Code:
<IfModule mod_proxy.c>
<Proxy *>
Order allow,deny
Allow from all
</Proxy>

ProxyRequests off
ProxyPass /knowledgeTree http://127.0.0.1:8090/knowledgeTree
ProxyPassReverse /knowledgeTree http://127.0.0.1:8090/knowledgeTree
<Location /knowledgeTree/>
ProxyPassReverse /
</Location>
</IfModule>

When I am trying to connect I see only: Unable to connect. Firefox can't establish a connection to the server at ifdocu.contaxt.biz:8090.

View 4 Replies View Related

Server :: Persistent Caching Proxy Available To Configure ?

Nov 29, 2010

Is there anything like a persistent caching proxy available in linux for me to configure, ie not public? (persistent meaning the cache remains in hard disk between reboots) Is it possible that it NEVER looks for any update to a page that is available in the cache?

View 1 Replies View Related

Ubuntu Servers :: Configure Apache2 To Proxy That Folder To Jetty Using Mod_proxy?

Mar 20, 2010

I have a php app set up in the default virtualhost, and want to add a Grails app. The grails app runs on [URL] and I want to configure apache2 to proxy that folder to Jetty using mod_proxy.

Module is enabled

Code:

$ sudo a2enmod proxy
Module proxy already enabled

[code]....

Quote:

[Sun Mar 21 00:14:56 2010] [warn] proxy: No protocol handler was valid for the URL /mailscan. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule. My apache2.conf contains no LoadModule lines, and a2enmod says it's already enabled. Does Ubuntu Desktop (Karmic) use the DSO versions of modules, or did I miss something else? I'm aware I should also use mod_proxy_html to make sure only the "portless" version of the address is outputted, but I can fix that later!

View 1 Replies View Related

Fedora Networking :: How To Configure Proxy Settings For Whole System In F12

Nov 24, 2009

The problem is that he did not specify exactly where in /etc/profile. I am trying to make a custom spin of F12 but I cannot do it behind the proxy as it is now.

View 4 Replies View Related

Fedora :: How To Configure Internet Access If - Sitting Behind Proxy?

Feb 28, 2011

I have Fedora running on the comp which is sitting behind proxy, which required username and password to access internet. The username is E-mail address.

I've tried the following to configure internet access:

My question is how can I configure internet access through proxy system wide for all applications and commands?

View 8 Replies View Related

OpenSUSE Network :: Configure YAST To Work With A Proxy?

Mar 14, 2009

I work with a proxy serverWhen i try to update my system i am not being allowed access. it tells me that i am denied access. what can i do?

View 7 Replies View Related

OpenSUSE Network :: Configure Proxy Settings For Browsers?

Aug 28, 2010

If I configure my OpenSuSE 11.2 system to use a proxy server in the YaST Proxy module, do I still need to configure my browser (i.e Firefox) to use these proxy settings, or is it done automatically under the covers?

View 1 Replies View Related

Networking :: Configure Proxy - Access Username And Password

Mar 3, 2010

i am after proxy server, i add the proxy server access username and password

[Code]....

it said the export is succecefully done, but after trying to install something using yum, its give me this [root@locVirtual-linuxtest etc]# yum install samba

[Code].....

View 2 Replies View Related

General :: Configure Squid Proxy Server In Centos 5.5?

Apr 12, 2011

how do i configure squid proxy server in centos 5.5 final text mode only to block facebook from 9am to 4pm

View 3 Replies View Related

General :: Configure Squid Proxy Server - Messege ?

Mar 13, 2010

I am recently install Linux CentOS 5.3 and configure squid proxy server but when i start squid following messege are display:

Why squid display messege:

View 3 Replies View Related

Server :: How To Configure Transparent Proxy In Squid-3.0 Staple 16

Jul 3, 2009

how to configure transparent proxy in squid-3.0-staple16? I install it with source code

View 1 Replies View Related

Server :: Reverse Proxy Unable To Configure Properly

Apr 22, 2010

I am using a reverse proxy on Debian Lenny and using apache2.

I have a site
Code:

And a site

Code:

Two files in
Code:

Code:

But the problem is [url]and [url]are both pointing to [url] I am unable to find why.I do not want to touch apache2.conf so want to go by having a VirtualHost site1.[url]

View 3 Replies View Related

Server :: How To Configure Dansguardian On Squid Transparent Proxy?

Jun 11, 2009

can anyone give me the solution how to configure dansguardian on squid transparent proxy.i m using
linux - slackware
squid - squid-2.6-stable18
dansguardian - 2.10.1.1

squid transparent proxy is working properly.

View 2 Replies View Related

CentOS 5 :: Proxy Configure Setting - Cannot Ping Any Website

Aug 4, 2009

I am trying to install a router on my CentOS 5 box, while i have properly configured IP address, Subnet, Default GW and DNS, I am at the point of trying to set up the Proxy. I have added a line: "proxy=http:ip_address:8080/" to the file of "/etc/yum.conf" The Proxy server here does not require any username nor password however I still cannot ping any website, while I tried to ping 74.125.45.100 (google.com) it returns the following message:

[Code]....

View 1 Replies View Related

Fedora Networking :: Unable To Configure The Proxy Server And Authentication?

Aug 9, 2011

Am using Fedora 15, in which i was able to configure the proxy server and authentication. i confirmed this by configuring web broswer and it works. Now the problem is that i want to deploy it out to other computer system(client) i dont want to use the transparent proxy because the Proxy Authentication will not work.
I even tried to configure a DHCP server if it will work but i cant still configure for other computer system to work.

View 1 Replies View Related

Networking :: Configure A Reverse Proxy For Oracle Database Connections?

Mar 4, 2010

I'm trying to configure a reverse proxy for Oracle Database connections. What I have:

Host outside --> Reverse proxy --> Oracle Database

The "Revese proxy" has two IP, one for local and another for outside.I've tried with iptables, but unable.Now I'm trying with "redir".When I do a tnsping database, it works and says OK. But executing sqlplus user/pass@database, it tries to connect but time later I receive a timeout. What i do is a redir from port 1521 in "Reverse proxy" to 1521 in "Oracle database" why this doesn't work or any other way to do it?

View 1 Replies View Related

Server :: Configure Squid Proxy To Point To A Central Policy Web?

Nov 10, 2010

Is there a way to configure Squid to get the filtering policy from a central policy on a web server.

like squid pointing to [url]

View 1 Replies View Related

Software :: Amarok V2.3.1 Won't Play Radio Streams / Configure Proxy?

Feb 9, 2011

Amarok v2.3.1 won't play radio streams. How to configure proxy?
Lyrics fetching works and konqueror is also configured properly.
Using Gnome.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved