自宅で以下のように設定しています。
DHCP clients -----> (wifi)(bridge) Openwrt -----> (eth)Main Router
使用しているデバイスは TPlink MR3020 バリア ブレーカーで、ブリッジ トラフィックの透過プロキシをセットアップしようとしました。ブリッジを通過するパケットをプロキシ サーバー( privoxy
) にリダイレクトしたいです。使ってみましたebtables
。しかし、次のコマンドを入力すると:
ebtables -t broute -A BROUTING -p IPv4 --ip-protocol 6 --ip-destination-port 80 -j redirect --redirect-target ACCEPT
次のエラーが発生しました:
Unable to update the kernel. Two possible causes:
1. Multiple ebtables programs were executing simultaneously. The ebtables
userspace tool doesn't by default support multiple ebtables programs running
concurrently. The ebtables option --concurrent or a tool like flock can be
used to support concurrent scripts that update the ebtables kernel tables.
2. The kernel doesn't support a certain ebtables extension, consider
recompiling your kernel or insmod the extension.
で IPv4 パッケージをアクティブ化しようとしましinsmod
たが、うまくいきませんでした。
これを達成する方法についてのアイデアはありますか?