在特定 EC2 实例子域上运行 Mosquitto Broker
我有一个在 EC2 Windows 实例上运行的 Mosquitto Broker。我可以使用 EC2 实例的 IP/DNS/名称从本地主机以及 EC2 实例外部连接到它。
我有 3 个子域连接到我的 EC2 实例的公共 IP。这些子域是:
- api.mysite.com
- admin.mysite.com
- mqtt.mysite.com
目前,我可以使用以下方式连接到我的代理3 个子域中的任何一个作为主机,1883 作为端口。我的 mosquitto.conf
文件中有一个 listener 1883
。
我想要的是仅允许 mqtt.mysite.com
作为 MQTT 连接的有效主机。这可能吗?
I have a Mosquitto Broker running on an EC2 Windows Instance. I can connect to it from localhost as well as from outside the EC2 instance using the IP/DNS/Name of the EC2 instance.
I have 3 sub domains connected to Public IP of my EC2 instance. These sub domains are:
- api.mysite.com
- admin.mysite.com
- mqtt.mysite.com
Currently, I can connect to my broker using any of the 3 sub domains as host and 1883 as port. I have a listener 1883
in my mosquitto.conf
file.
What I want is to only allow mqtt.mysite.com
as a valid host for MQTT connection. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会。假设所有主机名都指向同一 IP 地址,则无法限制访问。
Mosquitto 可以配置为将侦听器绑定到特定的本地 IP 地址,但不绑定到特定的主机名。
No. Assuming all the hostnames point to the same IP address then there is no way limit access.
Mosquitto can be configured to bind a listener to a specific local IP address, but not to a specific hostname.