Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
P
proxy-in-proxychains
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
proxy-in-proxychains
Commits
773813cd
Commit
773813cd
authored
Apr 18, 2019
by
rafaelferrari0
Committed by
GitHub
Apr 18, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update README.md
parent
d82ffbdb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
README.md
README.md
+24
-0
No files found.
README.md
View file @
773813cd
...
@@ -106,3 +106,27 @@ Add the IP to static hosts list ("/etc/hosts" on Linux, "C:\Windows\System32\Dri
...
@@ -106,3 +106,27 @@ Add the IP to static hosts list ("/etc/hosts" on Linux, "C:\Windows\System32\Dri
sudo proxy -l 80 -h 93.184.216.119 -p 80 -i "tee input.log" -o "tee output.log"
sudo proxy -l 80 -h 93.184.216.119 -p 80 -i "tee input.log" -o "tee output.log"
```
```
Point your browser to http://www.example.com and watch the contents of input.log and output.log files.
Point your browser to http://www.example.com and watch the contents of input.log and output.log files.
### IPv6 support
It's possible to accept IPv6 or IPv4 connections and forward to IPv6 or IPv4 services/hosts.
Accepting IPv6 connections and forwarding to IPv6 service: (still accepting IPv4 connections)
```
proxy -l 8080 -h fe80::20d:b9ff:fe12:7650 -p 8080
```
Accepting IPv6 connections and forwarding to legacy IPv4 service: (still accepting IPv4 connections)
```
proxy -l 8080 -h 192.168.1.2 -p 8080
```
Accepting only IPv4 connections and forwarding to IPv6 service:
```
proxy -l 8080 -b 192.168.1.1 -h fe80::20d:b9ff:fe12:7650 -p 8080
```
Accepting only IPv4 connections and forwarding to IPv4 service:
```
proxy -l 8080 -b 192.168.1.1 -h 192.168.1.2 -p 8080
```
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