如何从 .net 配置网络?
我正在编写一个小应用程序来帮助人们加入 OpenVPN 网络。它需要做什么:
- 设置 IP 地址
- 设置网络
- 掩码 操作路由
- 在 2 个接口之间创建桥接(我什至不知道这个的命令行。)
.net 中是否有任何类提供此功能,或者我是否需要运行 netsh 或其他一些配置程序?如果有这样的类,它们可以在单声道中使用吗?
I am writing a small application to help people join an OpenVPN network. What it needs to do:
- Set the IP address
- Set the netmask
- Manipulate routes
- Create bridge between 2 interfaces (I don't even know the command line for this.)
Are there any classes in .net that provide this funcionality or do I need to run netsh or some other configuration program? If there are such classes are they usable in mono?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有课程。您可以 p/调用 Windows 网络 API,也可以派生一个进程来调用 netsh。
There are no classes. You can p/invoke the Windows network API or you can fork a process to invoke netsh.