如何在不使用UNETSTACK中使用代理的情况下删除Groovy代码中的路由?

发布于 2025-02-10 08:37:07 字数 25 浏览 2 评论 0 原文

与unetstack shell一样

As with unetstack shell we can delete a route but how to delete a route in the groovy code without using the Agent

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情场扛把子 2025-02-17 08:37:07

请参阅使用 deleteroute()构造方法创建,然后将其发送到提供路由服务的代理。

例如,如果要删除到节点10的所有路线,则看起来像:

def router = agentForService(Services.ROUTING)
def req = EditRouteReq.deleteRoute()
req.to = 10
def rsp = router << req
// rsp will have performative AGREE if the request was successful

Refer to the documentation for Routing service in the Unet handbook for how to do this. Essentially you need to send a EditRouteReq created using the deleteRoute() constructor method, and send it to the agent providing the ROUTING service.

For example, if you want to delete all routes to node 10, this will look something like:

def router = agentForService(Services.ROUTING)
def req = EditRouteReq.deleteRoute()
req.to = 10
def rsp = router << req
// rsp will have performative AGREE if the request was successful
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文