web-dev-qa-db-ja.com

CiscoQuickVPNがローカルコンピュータを表示できない

RV180 VPNルーターへのQuickVPN接続に接続していて、IP経由でルーターにアクセスできますが、コンピューターが見つからないか、表示されません。どうすれば修正できますか?

より高度なセットアップを行う必要がありますか?ネットワーク共有にアクセスできないようです。

編集:「seemy ip」グーグル検索のIPは、VPNを使用しているネットワークのIPではなく、ローカルネットワークのIPを示していることにも気づきました。それは正常ですか?

ローカルNETWOKR:10.30.0.0 VPNネットワーク:192.168.10.0

IPCONFIG:

Windows IP Configuration

   Host Name . . . . . . . . . . . . : Host-018
   Primary Dns Suffix  . . . . . . . : 
   Node Type . . . . . . . . . . . . : Hybrid
   IP Routing Enabled. . . . . . . . : No
   WINS Proxy Enabled. . . . . . . . : No
   DNS Suffix Search List. . . . . . : linksys
                                       Host.host2.Host3.us
                                       Host.private

Ethernet adapter Local Area Connection:

   Connection-specific DNS Suffix  . : Host.host2.Host3.us
   Description . . . . . . . . . . . : Intel(R) 82579LM Gigabit Network Connection
   Physical Address. . . . . . . . . : 78-2B-CB-AC-CB-1F
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes
   IPv4 Address. . . . . . . . . . . : 10.30.20.0(Preferred) 
   Subnet Mask . . . . . . . . . . . : 255.255.0.0
   Lease Obtained. . . . . . . . . . : Tuesday, November 26, 2013 8:54:04 AM
   Lease Expires . . . . . . . . . . : Wednesday, November 27, 2013 8:54:04 AM
   Default Gateway . . . . . . . . . : 10.30.0.1
   DHCP Server . . . . . . . . . . . : 10.30.0.1
   DNS Servers . . . . . . . . . . . : 8.8.8.8
                                       x.164.64.x
   NetBIOS over Tcpip. . . . . . . . : Enabled

Tunnel adapter isatap.Host.host2.Host3.us:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . : Host.host2.Host3.us
   Description . . . . . . . . . . . : Microsoft ISATAP Adapter
   Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes

Tunnel adapter Local Area Connection* 9:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . : 
   Description . . . . . . . . . . . : Microsoft 6to4 Adapter
   Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes

Tunnel adapter Teredo Tunneling Pseudo-Interface:

   Connection-specific DNS Suffix  . : 
   Description . . . . . . . . . . . : Teredo Tunneling Pseudo-Interface
   Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes
   Link-local IPv6 Address . . . . . : fe80::1008:3876:f5dc:ebff%13(Preferred) 
   Default Gateway . . . . . . . . . : 
   DHCPv6 IAID . . . . . . . . . . . : 318767104
   DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-19-D1-E5-26-78-2B-CB-AC-CB-1F
   NetBIOS over Tcpip. . . . . . . . : Disabled

enter image description hereenter image description hereenter image description here

VPNでは、192.168.10.1のVPNルーターにアクセスできますが、名前を介してマシンにアクセスすることはできません。

2
Jason

クライアント側のルーティングの問題のように聞こえます。エンドポイントにpingを実行できても、他に何も実行できず、「show my ip」スタイルのサイトがまだローカルIPを使用している場合は、VPNをデフォルトルートにしないことになります。

すべてをVPNに送信することが望ましくない場合は、少なくともリモートIP範囲を含むルートを追加する必要があります。エンドポイントは/ 32に接続されているため、反対側にpingを実行できますが、マシンは192.168.10/24の残りの部分がVPNの下に存在することを認識していません。

それが済んだら、接続のリモートエンドでVPNクライアントがVLANオフになっていないこと、および他の手段によるクライアントの分離が無効になっていることをさらに確認してください。

1
Lee S