如何在 MVC 中使用表单身份验证将用户连接/断开连接到 VPN?

发布于 2025-01-12 00:47:51 字数 683 浏览 3 评论 0原文

当用户登录时,他将连接到我的VPN服务器,当他注销时,他将断开连接。在使用 C# 的 ASP.NET MVC Web 应用程序中这可能吗?

ASP.NET MVC5

[HttpPost]
[AllowAnonymous]
public ActionResult Login(LoginModel model, string returnUrl)
{
    UsersController uc = new UsersController();
    if (ModelState.IsValid && uc.UserExists(model) && uc.PasswordValid(model))
    {
        FormsAuthentication.SetAuthCookie(model.UserName, false);
        return View("Dashboard");
    }
    // If we got this far, something failed, redisplay form
    ModelState.AddModelError("", "The user name or password provided is incorrect.");
    return View(model);
}

当有效用户完成登录后,他/她将连接到我的 VPN 服务器并使用服务。

When the user logs in, he will connect with my VPN server, and when he logs out, he will disconnect. Is this possible in a ASP.NET MVC web app using C#?

ASP.NET MVC5

[HttpPost]
[AllowAnonymous]
public ActionResult Login(LoginModel model, string returnUrl)
{
    UsersController uc = new UsersController();
    if (ModelState.IsValid && uc.UserExists(model) && uc.PasswordValid(model))
    {
        FormsAuthentication.SetAuthCookie(model.UserName, false);
        return View("Dashboard");
    }
    // If we got this far, something failed, redisplay form
    ModelState.AddModelError("", "The user name or password provided is incorrect.");
    return View(model);
}

When a valid user completes login, he/she will connect to my VPN server and use services.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文