当前位置:   article > 正文

mac设置端口号转发到默认端口80、443_mac本地如何配置域名到本地端口

mac本地如何配置域名到本地端口
1、需要这种设置的场景

我们一些开发的时候需要将一些网站的请求拦截在本地服务下。
下文将以 test.com 为例

2、设置host
open /private/etc/hosts
  • 1

添加如下内容

127.0.0.1           test.com
  • 1

打开之后需要复制到桌面,改动之后再覆盖掉原来的host文件。
通过设置host可以做到将对应域名的请求到你自己的本地服务

设置成功我们就可以使用 比如 http://test.com:8080/index.html 来访问本地服务

3、设置端口转发

设置host只能将对应请求拦截在本地服务,但是请求时需要加本地服务的端口号比如
:8080
http://test.com:8080/index.html
但是我们不想加它。【手动狗头】
我们想直接访问
http://test.com/index.html
于是我们需要将我们本地服务的80端口转发为我们的本地服务端口(https默认端口为443 )

一些常用的默认端口
HTTP(超文本传输协议):80/8080/3128/8081/9080 TCP

HTTPS(安全超文本传输协议):443 TCP

FTP(文件传输协议):21 TCP

SSH(安全外壳协议):22 TCP

Telnet(远程终端协议):23 TCP

SMTP(简单邮件传输协议):25 TCP

POP3(邮局协议版本3):110 TCP

DNS(域名解析协议):53 UDP

1.创建idea.tomcat.forwarding文件

sudo vim /etc/pf.anchors/idea.tomcat.forwarding
  • 1

在idea.tomcat.forwarding添加以下命令:

rdr pass on lo0 inet proto tcp from any to 127.0.0.1 port 80 -> 127.0.0.1 port 8080 
rdr pass on lo0 inet proto tcp from any to 127.0.0.1 port 443 -> 127.0.0.1 port 8443 
  • 1
  • 2

这个配置是说80端口转发到8080
443端口转发到8443
8080 、8443 这两个不是死的,你的本地服务什么端口就写什么,
也不一定要都配置,
比如如果是https
只要配置rdr pass on lo0 inet proto tcp from any to 127.0.0.1 port 443 -> 127.0.0.1 port 8443这个就好了。
2.创建pf-tomcat.conf文件

sudo vim /etc/pf-tomcat.conf
  • 1

在pf-tomcat.conf添加以下命令:

rdr-anchor "forwarding"
load anchor "forwarding" from "/etc/pf.anchors/idea.tomcat.forwarding"
  • 1
  • 2

3.启动端口转发功能

sudo pfctl -ef /etc/pf-tomcat.conf 
  • 1

如果看到如下提示表示成功。

pfctl: Use of -f option, could result in flushing of rules
present in the main ruleset added by the system at startup.
See /etc/pf.conf for further details.

No ALTQ support in kernel
ALTQ related functions disabled
pfctl: pf already enabled
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

一顿操作之后我们终于可以直接
http://test.com/index.html

4.关闭端口转发功能

sudo pfctl -d 
  • 1

或者关闭全部

pfctl -F all -f /etc/pf.conf
  • 1

注意事项:
1、重启mac,需要手动重启端口转发命令

sudo pfctl -ef /etc/pf-tomcat.conf
  • 1

2、一定要注意你开启的服务是否是https 服务,如果是https服务要转发到443才能成功。

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号