Bug 47651 - Proxy setting not read correctly
Summary: Proxy setting not read correctly
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Red Hat Linux
Classification: Retired
Component: rhn_register
Version: 6.2
Hardware: i386
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Adrian Likins
QA Contact: Jay Turner
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2001-07-06 12:53 UTC by petr
Modified: 2015-01-07 23:47 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2001-07-06 12:53:44 UTC
Embargoed:


Attachments (Terms of Use)

Description petr 2001-07-06 12:53:41 UTC
Description of Problem:
Proxy setting defined by rhn_register --configure is not correctly used - first 7 characters of the hostname are truncated.

How Reproducible:
100%

Steps to Reproduce:
1. rhn_register --configure
2. 1.  enableProxy        Yes, 2.  httpProxy          somename.somedomain:3128
3. tcpdump -s 300 host your_nameserver
4. rhn_register

Actual Results:
in tcpdump output can be seen that there is an "A" query for e.somedomain, i.e. for proxy name without first 7 characters.

Expected Results:
it shall be query for the right name.

Additional Information:
In rhnreg.py line 49
proxyHost = cfg.readEntry("httpProxy")[7:]
helps to change from 7 to 0:
proxyHost = cfg.readEntry("httpProxy")[0:]	
and then everything works fine.

Comment 1 Jay Turner 2001-07-06 14:29:42 UTC
This issue is resolved and the fix will be coming out in the next release of
rhn_register.

Comment 2 Adrian Likins 2001-07-06 18:38:59 UTC
The short term fix is to use a proxy name in 
the format of "http://foo.bar.com:8192"

The comments in the config file indicate otherwise, but that will
be fixed in the new version as well.


Note You need to log in before you can comment on or make changes to this bug.