我们正在从微软前沿迁移到使用SonicWALL作为防火墙。
我已经成功地将我们的DHCP预订从运行在TMG框上的DHCP服务导出,但希望避免将它们手工输入到SonicWALL管理屏幕中。
任何人都不知道如何大容量上传预订列表。如果有必要的话,我不介意使用脚本:-)
发布于 2020-06-02 19:44:56
您可以使用SonicOS来完成它。检查下面的KB。即使是用于创建Address对象,使用不同JSON对象的进程也是相同的
{
"dhcp_server": {
"ipv4": {
"scope": {
"static": [
{
"ip": "string",
"mac": "string",
"enable": true,
"name": "string",
"lease_time": 0,
"default_gateway": "string",
"netmask": "string",
"comment": "string",
"domain_name": "string",
"dns": {
"server": {}
},
"wins": {
"primary": "string",
"secondary": "string"
},
"call_manager": {
"primary": "string",
"secondary": "string",
"tertiary": "string"
},
"network_boot": {
"next_server": "string",
"boot_file": "string",
"server_name": "string"
},
"generic_option": {},
"always_send_option": true
}
]
}
}
}
}https://serverfault.com/questions/454907
复制相似问题