2

KVM を使用して、Linux ボックスで Windows 仮想マシンを実行しています。ネットワーキングは、ブリッジされたイーサネット デバイスに接続されたタップ デバイスを介して実現されます。これにより、Windows VM は基本的にネットワーク上の別の物理コンピューターのように見えます。これはかなりいいです。

ただし、私の理解では、すべてではないにしても、ほとんどのワイヤレス ドライバーはブリッジングをサポートできません。仕事中にもう少し自由にローミングできるようにしたいのですが、効果的な回避策を知っている人はいますか?

低レベルのネットワーク アクセスを必要とする Windows VPN ソフトウェアを使用する必要があるため、ユーザー モード ネットワークは機能しません。

4

3 に答える 3

2

I assume that you could configure your Windows guest to use the host as its default gateway, and set up NAT via the wireless interface on the host. So the signal flow would look like this:

  1. Windows software opens connections to a host on the internets.
  2. Windows routes the packet via the default gateway, i.e. the host Linux system.
  3. Linux does NAT magic and routes the packet via its normal routing table (which should use a default gateway via the wireless interface).

I have never tried this in combination with bridging though.

于 2008-09-17T00:46:07.047 に答える
0

このような他の関連する質問は、それが単に多くのワイヤレスドライバーの制限であることを示しているようです. ブリッジングを行うLinux用のものはいくつかありますが、最初からシステムに組み込むことを計画する必要があります.

于 2012-08-28T17:15:04.380 に答える