Jump to content

Question

Posted

Всем привет! Пытаюсь найти аналог двум командам в 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 и т.д. Всегда ошибка.

Подскажите правильный вариант. Спасибо!

3 answers to this question

Recommended Posts

  • 0
Posted

Догадался, что можно посмотреть запросы админки)

Правильный ответ:
{"mac":"xx:xx:xx:xx:xx:xx","policy":{"no":true}}

  • Upvote 2
  • 0
Posted

тот же вопрос но применительно к команде: 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]."
  • 0
Posted
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
                    }
                }
            }
        }
    }
}

 

 

  • Thanks 3

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

This site uses cookies. By clicking "I accept" or continuing to browse the site, you authorize their use in accordance with the Privacy Policy.