これは、VirtualBox VMにUbuntu 13.04デスクトップをインストールするためのものです。私は、xyz251:9090にHTTPプロキシを備えた企業ネットワークにいます。ゲストOSを自動構成スクリプトで構成したため、Firefoxは正常に動作しますが、プロキシを使用して接続するために「apt-get」または「Ubuntu Software Center」を取得できません。
ファイル「/etc/apt/apt.conf」を作成しましたが、これには1行のテキストが含まれています。
Acquire::http:Proxy "http://x.y.z.251:9090"
これは、「システム設定/ネットワーク/ネットワークプロキシ」で指定し、システム全体に適用したproxy.pacファイルです。
Firefoxを使用すると、パケットトレースは、ポート9090で企業プロキシを介してTCP接続が行われたことを示し、「Ubuntu Software Center」および「apt-get」を実行すると、パケットトレースに最終的な宛先IPを持つTCP SYNパケットが表示されますアドレスとポート80。もちろん、企業ファイアウォールがポート80のTCP接続の出入りをブロックするため、SYNパケットへの応答はありません。
ターミナルウィンドウで「sudo apt-get」を使用すると、常に次のように表示されます。
Ign cdrom://Ubuntu 13.04 _Raring Ringtail_ - Release amd64 (20130424) raring/main Translation-en_US
Ign cdrom://Ubuntu 13.04 _Raring Ringtail_ - Release amd64 (20130424) raring/main Translation-en
Ign cdrom://Ubuntu 13.04 _Raring Ringtail_ - Release amd64 (20130424) raring/restricted Translation-en_US
Ign cdrom://Ubuntu 13.04 _Raring Ringtail_ - Release amd64 (20130424) raring/restricted Translation-en
Err http://extras.ubuntu.com raring Release.gpg
Could not connect to extras.ubuntu.com:80 (91.189.92.152), connection timed out
Err http://archive.canonical.com raring Release.gpg
Cannot initiate the connection to archive.canonical.com:80 (2001:67c:1360:8c01::1b). - connect (101: Network is unreachable) [IP: 2001:67c:1360:8c01::1b 80]
Err http://us.archive.ubuntu.com raring Release.gpg
Cannot initiate the connection to us.archive.ubuntu.com:80 (2001:67c:1562::14). - connect (101: Network is unreachable) [IP: 2001:67c:1562::14 80]
Err http://us.archive.ubuntu.com raring-updates Release.gpg
Cannot initiate the connection to us.archive.ubuntu.com:80 (2001:67c:1562::14). - connect (101: Network is unreachable) [IP: 2001:67c:1562::14 80]
Err http://us.archive.ubuntu.com raring-backports Release.gpg
Cannot initiate the connection to us.archive.ubuntu.com:80 (2001:67c:1562::14). - connect (101: Network is unreachable) [IP: 2001:67c:1562::14 80]
59% [Connecting to security.ubuntu.com (91.189.91.14)]
最終的に、私は見る:
Err http://security.ubuntu.com raring-security Release.gpg
Cannot initiate the connection to security.ubuntu.com:80 (2001:67c:1360:8c01::18). - connect (101: Network is unreachable) [IP: 2001:67c:1360:8c01::18 80]
Reading package lists... Done
W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/raring/Release.gpg Cannot initiate the connection to us.archive.ubuntu.com:80 (2001:67c:1562::14). - connect (101: Network is unreachable) [IP: 2001:67c:1562::14 80]
W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/raring-updates/Release.gpg Cannot initiate the connection to us.archive.ubuntu.com:80 (2001:67c:1562::14). - connect (101: Network is unreachable) [IP: 2001:67c:1562::14 80]
W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/raring-backports/Release.gpg Cannot initiate the connection to us.archive.ubuntu.com:80 (2001:67c:1562::14). - connect (101: Network is unreachable) [IP: 2001:67c:1562::14 80]
W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/raring-security/Release.gpg Cannot initiate the connection to security.ubuntu.com:80 (2001:67c:1360:8c01::18). - connect (101: Network is unreachable) [IP: 2001:67c:1360:8c01::18 80]
W: Failed to fetch http://archive.canonical.com/ubuntu/dists/raring/Release.gpg Cannot initiate the connection to archive.canonical.com:80 (2001:67c:1360:8c01::1b). - connect (101: Network is unreachable) [IP: 2001:67c:1360:8c01::1b 80]
W: Failed to fetch http://extras.ubuntu.com/ubuntu/dists/raring/Release.gpg Could not connect to extras.ubuntu.com:80 (91.189.92.152), connection timed out
W: Some index files failed to download. They have been ignored, or old ones used instead.
私が何を間違えているのか、私にはまったくわかりません。
---更新----私も試しました:
Acquire::http:proxy "http://user:pass@x.y.z.251:9090/"
「xyz」はもちろんプレースホルダーです。私は雇用主の警備員が実際の数字を投稿してくれて親切に私を見てくれるとは思わない。パケットトレースに違いはありません。「apt-get」はまだ実際のIPアドレスとポート80を使用しています。apt.confファイルで意図的なミスを犯し、「apt-get」がエラーで終了したため、プロキシのこの設定行が表示されることは確かですが、それを尊重していないようです。
ネットワーク間をブリッジするITポリシーに反しているため、「NAT」ネットワーク接続を使用しています。DHCPサーバーは既知のMACアドレスにのみアドレスを提供します。ITセキュリティがキューブを叩きたくありません(もう一度)。
:
、より間http
とProxy
?http::Proxy
代わりにhttp:Proxy
。