我有一个 Linksys WRT54G/GL/GS
,我在上面运行DD-WRT v24-sp2 (10/10/09) vpn - build 13064
,但无论如何我都找不到根据 Mac 地址分配 IP 的方法。基本上我有几台笔记本电脑,而 Windows 确实没有合适的方法为每个网络设置单独的配置文件。
答案1
根据 MAC 地址分配 IP 地址通常由 DHCP 服务器完成;这通常称为“静态租约”。
这是DD-WRT 启用静态 DHCP 教程。在 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"