Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
1ab1d8fc
Commit
1ab1d8fc
authored
Apr 08, 2016
by
Fabian Franz
Committed by
Franco Fichtner
Apr 12, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add link to proxy page and extend the nat template
(cherry picked from commit
4aa0ce0f
)
parent
72f87f32
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
21 deletions
+34
-21
main.xml
...pnsense/mvc/app/controllers/OPNsense/Proxy/forms/main.xml
+11
-10
firewall_nat_edit.php
src/www/firewall_nat_edit.php
+23
-11
No files found.
src/opnsense/mvc/app/controllers/OPNsense/Proxy/forms/main.xml
View file @
1ab1d8fc
...
@@ -207,7 +207,7 @@
...
@@ -207,7 +207,7 @@
Enable transparent proxy mode. You will need a firewall rule to forward traffic from the firewall to the proxy server.
Enable transparent proxy mode. You will need a firewall rule to forward traffic from the firewall to the proxy server.
You may leave the proxy interfaces empty, but remember to set a valid ACL in that case.
You may leave the proxy interfaces empty, but remember to set a valid ACL in that case.
<br/>
<br/>
<a
href=
"/firewall_nat_edit.php?template=transparant_proxy"
>
a
dd a new firewall rule
</a>
<a
href=
"/firewall_nat_edit.php?template=transparant_proxy"
>
A
dd a new firewall rule
</a>
]]>
</help>
]]>
</help>
</field>
</field>
<field>
<field>
...
@@ -220,7 +220,8 @@
...
@@ -220,7 +220,8 @@
Be aware of the security implications before enabling this option.
Be aware of the security implications before enabling this option.
<br/><br/>
<br/><br/>
Transparent HTTP proxy needs to be enabled and you need nat rules to reflect your traffic
Transparent HTTP proxy needs to be enabled and you need nat rules to reflect your traffic
for this feature to work.
for this feature to work.
<br/>
<a
href=
"/firewall_nat_edit.php?template=transparant_proxy&https=1"
>
Add a new firewall rule
</a>
]]>
</help>
]]>
</help>
</field>
</field>
<field>
<field>
...
...
src/www/firewall_nat_edit.php
View file @
1ab1d8fc
...
@@ -150,9 +150,18 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
...
@@ -150,9 +150,18 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
$pconfig
[
'interface'
]
=
"lan"
;
$pconfig
[
'interface'
]
=
"lan"
;
$pconfig
[
'src'
]
=
"lan"
;
$pconfig
[
'src'
]
=
"lan"
;
$pconfig
[
'dst'
]
=
"any"
;
$pconfig
[
'dst'
]
=
"any"
;
$pconfig
[
'dstbeginport'
]
=
80
;
if
(
isset
(
$_GET
[
'https'
])){
$pconfig
[
'dstendport'
]
=
80
;
$pconfig
[
'dstbeginport'
]
=
443
;
$pconfig
[
'target'
]
=
'127.0.0.1'
;
$pconfig
[
'dstendport'
]
=
443
;
if
(
isset
(
$config
[
'OPNsense'
][
'proxy'
][
'forward'
][
'sslbumpport'
]))
{
$pconfig
[
'local-port'
]
=
$config
[
'OPNsense'
][
'proxy'
][
'forward'
][
'sslbumpport'
];
}
else
{
$pconfig
[
'local-port'
]
=
3129
;
}
}
else
{
$pconfig
[
'dstbeginport'
]
=
80
;
$pconfig
[
'dstendport'
]
=
80
;
// try to read the proxy configuration to determine the current port
// try to read the proxy configuration to determine the current port
// this has some disadvantages in case of dependencies, but there isn't
// this has some disadvantages in case of dependencies, but there isn't
// a much better solution available at the moment.
// a much better solution available at the moment.
...
@@ -161,8 +170,11 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
...
@@ -161,8 +170,11 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
}
else
{
}
else
{
$pconfig
[
'local-port'
]
=
3128
;
$pconfig
[
'local-port'
]
=
3128
;
}
}
}
$pconfig
[
'target'
]
=
'127.0.0.1'
;
$pconfig
[
'natreflection'
]
=
'enable'
;
$pconfig
[
'natreflection'
]
=
'enable'
;
$pconfig
[
'descr'
]
=
"redirect traffic to proxy"
;
$pconfig
[
'descr'
]
=
gettext
(
"redirect traffic to proxy"
)
;
}
else
{
}
else
{
$pconfig
[
'src'
]
=
"any"
;
$pconfig
[
'src'
]
=
"any"
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment