web-dev-qa-db-ja.com

dd-wrtの特定のMACアドレスにIPを割り当てます

DD-WRT v24-sp2 (10/10/09) vpn - build 13064を実行しているLinksysWRT54G/GL/GSがあり、私の人生の間、Macアドレスに基づいてIPを割り当てる方法を見つけることができません。基本的に私はいくつかのラップトップを持っていますが、Windowsにはネットワークごとに個別のプロファイルを作成する適切な方法がありません。

4
Unfundednut

MACアドレスに基づくIPアドレスの割り当ては、通常、DHCPサーバーによって行われます。これはしばしば「静的リース」と呼ばれます。

これが 静的DHCPの有効化に関するDD-WRTチュートリアル です。 Web管理GUIでは、このオプションはDHCPサーバーオプションのサービスタブにあります。

Sshコマンドラインインターフェイスを使用している場合は、次のコマンドを使用します。

  • 13832より前のビルド:

    # X is the total number of static leases
    nvram set static_leasenum=X
    
    # note the space between the two example addresses
    nvram set static_leases="00:11:22:33:44:55=name1=IP-Address1 00:11:22:33:44:56=name2=IP-Address2"
    
  • ビルド13832以降:

    # X is the total number of static leases
    nvram set static_leasenum=X
    
    # note the space between the two example addresses
    # the last field is new; lease time; leave empty for "indefinite"
    nvram set static_leases="00:11:22:33:44:55=name1=IP-Address1= 00:11:22:33:44:56=name2=IP-Address2=1440"
    

alt text

4
quack quixote