PoliceMan Posted June 6, 2022 Share Posted June 6, 2022 Всем привет! Пытаюсь найти аналог двум командам в rest api: ip hotspot host xx:xx:xx:xx:xx:xx policy Policy3 no ip hotspot host xx:xx:xx:xx:xx:xx policy Для первой это POST /rci/ip/hotspot/host {"mac":"xx:xx:xx:xx:xx:xx","policy":"Policy3"} А вот вторую, как только не пробовал и no:true и т.д. Всегда ошибка. Подскажите правильный вариант. Спасибо! Quote Link to comment Share on other sites More sharing options...
0 PoliceMan Posted June 6, 2022 Author Share Posted June 6, 2022 Догадался, что можно посмотреть запросы админки) Правильный ответ: {"mac":"xx:xx:xx:xx:xx:xx","policy":{"no":true}} 2 Quote Link to comment Share on other sites More sharing options...
0 isegals Posted September 28 Share Posted September 28 тот же вопрос но применительно к команде: interface Home no mac access-list address 28:c2:1f:6b:c9:5e запрос через DELETE rci/interface/Home/mac/access-list?address=28:c2:1f:6b:c9:5e выдает: "message": "\"no\" is not applicable to: access-list [http/rci]." Quote Link to comment Share on other sites More sharing options...
0 eralde Posted September 29 Share Posted September 29 12 часа назад, isegals сказал: тот же вопрос но применительно к команде: interface Home no mac access-list address 28:c2:1f:6b:c9:5e запрос через DELETE rci/interface/Home/mac/access-list?address=28:c2:1f:6b:c9:5e выдает: "message": "\"no\" is not applicable to: access-list [http/rci]." Можно использовать POST: Скрытый текст // такой запрос добавляет MAC в ACL (MAC должен быть предварительно занесен в known host) { "interface": { "Home": { "mac": { "access-list": { "address": { "address": "22:22:22:22:22:22" } } } } } } // такой запрос удаляет MAC из ACL { "interface": { "Home": { "mac": { "access-list": { "address": { "address": "22:22:22:22:22:22", "no": true } } } } } } 3 Quote Link to comment Share on other sites More sharing options...
Question
PoliceMan
Всем привет! Пытаюсь найти аналог двум командам в rest api:
ip hotspot host xx:xx:xx:xx:xx:xx policy Policy3
no ip hotspot host xx:xx:xx:xx:xx:xx policy
Для первой это
POST /rci/ip/hotspot/host
{"mac":"xx:xx:xx:xx:xx:xx","policy":"Policy3"}
А вот вторую, как только не пробовал и no:true и т.д. Всегда ошибка.
Подскажите правильный вариант. Спасибо!
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.