在一个国家/地区部署网站

发布于 2024-11-01 08:41:10 字数 139 浏览 1 评论 0原文

我有一个网站,我需要将其部署在一个国家/地区,例如黎巴嫩。换句话说,来自任何其他国家/地区的任何请求都不应得到响应。

我想我可以使用请求的 IP 地址并知道它是从哪个国家生成的。 我怎样才能在 C# 中做到这一点。

I have a website and i need to deploy it in a single country for example Lebanon. In other words, any request that comes to the website from any other country should not be responded to.

I think I may use the IP address of the request and know from which country it was generated.
How can I do this in C#.

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

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

发布评论

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

评论(2

傲鸠 2024-11-08 08:41:10

我想我可以使用请求的 IP 地址并知道它是从哪个国家生成的

不,你不知道。错觉。

  • 你几乎无法知道请求来自哪个国家,只能知道 IP 地址是在哪里注册的。如果您对此很聪明,有时可以通过解析反向 dns 获得更多信息。
  • 这忽略了一些小问题,例如可能使用中央地址池的大型国际提供商,例如 VPN 提供商等。或卫星电话提供商(可能在国外使用但不居住在该国)。

最后,这将具有相对有限的用途,具体取决于您的具体业务情况,它可能完全没用。

如何在 C# 中执行此操作。

编程。

获取 GeoIP 数据库(在 google 中查找该术语,会出现提供商,否则尝试与“maxmind”结合使用)。然后根据数据库查询IP。决定如何处理“可能”的情况,例如国际业务。示例...IBM 有地址空间。他们将其用于所有操作。你想如何处理这个问题?

I think I may use the IP address of the request and know from which country it was generated

No, you dont. Illusion.

  • you can not know which country a request comes frmo, only where the IP address is registere, pretty much. More information is avaialble parsing the reverse dns SOMETIMES if you are smart at this.
  • This ignores little issuesl ike large international providers that may use a central pool of addresses, like VPN providers etc. Or satellite phone providers (which may be used out of a country but not be resident there).

At the end this will be of RELATIVELY limtied use, depending what your exact busienss case is it may be totally useless.

How can I do this in C#.

Programming.

Get a GeoIP database (look up the term in google, a provider will show up, otherwise try it in combination with "maxmind"). THen query the IP against the database. Decide how to handle "maybe" scenarios like international businesses. Example... IBM has address space. They use it for all their oprations. How you want to deal with this?

望笑 2024-11-08 08:41:10

为了鼓励本地索引和参与,您可以做的一件事是使用黎巴嫩国家/地区代码后缀部署您的网站。

www.example.co.lb

以下是国家/地区后缀域名的列表。

One thing you can do to encourage local indexing and participation is deploy your website with a Lebanon country code suffix.

www.example.co.lb

Here's a list of country suffix domains.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文