Forward squid connected client internet requests on eth0 to wlan0
I have a Squid proxy server on ubuntu that is connected to LAN through eth0 (which also has internet access) and an internet connection wlan0.
eth0 assigned IP is 192.168.0.48, gateway is 192.168.0.1
wlan0 assigned IP is 192.168.49.141, gateway is 192.168.49.1
The client machines are connecting to the proxy server itself just fine. However I'm trying to figure out how to force all internet requests to the wlan0 interface. When I don't do any configuration Squid runs the internet requests through eth0. Of the plethora of configurations to try to force internet requests through wlan0 I am unable to connect to the internet.
What I am trying to do is a squid client connects to the squid server through eth0 and then the proxy server sends out the request through wlan0.
I have done sysctl net.ipv4.ip_forward = 1. A bundle of different iptables rules and route table commands that are similar to what I'm describing, but to no avail.
proxy iptables network-interface
add a comment |
I have a Squid proxy server on ubuntu that is connected to LAN through eth0 (which also has internet access) and an internet connection wlan0.
eth0 assigned IP is 192.168.0.48, gateway is 192.168.0.1
wlan0 assigned IP is 192.168.49.141, gateway is 192.168.49.1
The client machines are connecting to the proxy server itself just fine. However I'm trying to figure out how to force all internet requests to the wlan0 interface. When I don't do any configuration Squid runs the internet requests through eth0. Of the plethora of configurations to try to force internet requests through wlan0 I am unable to connect to the internet.
What I am trying to do is a squid client connects to the squid server through eth0 and then the proxy server sends out the request through wlan0.
I have done sysctl net.ipv4.ip_forward = 1. A bundle of different iptables rules and route table commands that are similar to what I'm describing, but to no avail.
proxy iptables network-interface
squid is a proxy, so there's no routing involved (ip_forward won't help). Now squid has a default route (internet access) to eth0, but you want it to use wlan0 (internet access too). This might require advanced/policy routing to add a second default route in an other routing table and control it using ip rule with possible help from iptables or better: squid's configuration (eg: tcp_outgoing_address)
– A.B
Mar 14 at 21:47
add a comment |
I have a Squid proxy server on ubuntu that is connected to LAN through eth0 (which also has internet access) and an internet connection wlan0.
eth0 assigned IP is 192.168.0.48, gateway is 192.168.0.1
wlan0 assigned IP is 192.168.49.141, gateway is 192.168.49.1
The client machines are connecting to the proxy server itself just fine. However I'm trying to figure out how to force all internet requests to the wlan0 interface. When I don't do any configuration Squid runs the internet requests through eth0. Of the plethora of configurations to try to force internet requests through wlan0 I am unable to connect to the internet.
What I am trying to do is a squid client connects to the squid server through eth0 and then the proxy server sends out the request through wlan0.
I have done sysctl net.ipv4.ip_forward = 1. A bundle of different iptables rules and route table commands that are similar to what I'm describing, but to no avail.
proxy iptables network-interface
I have a Squid proxy server on ubuntu that is connected to LAN through eth0 (which also has internet access) and an internet connection wlan0.
eth0 assigned IP is 192.168.0.48, gateway is 192.168.0.1
wlan0 assigned IP is 192.168.49.141, gateway is 192.168.49.1
The client machines are connecting to the proxy server itself just fine. However I'm trying to figure out how to force all internet requests to the wlan0 interface. When I don't do any configuration Squid runs the internet requests through eth0. Of the plethora of configurations to try to force internet requests through wlan0 I am unable to connect to the internet.
What I am trying to do is a squid client connects to the squid server through eth0 and then the proxy server sends out the request through wlan0.
I have done sysctl net.ipv4.ip_forward = 1. A bundle of different iptables rules and route table commands that are similar to what I'm describing, but to no avail.
proxy iptables network-interface
proxy iptables network-interface
asked Feb 13 at 20:48
daschedasche
11
11
squid is a proxy, so there's no routing involved (ip_forward won't help). Now squid has a default route (internet access) to eth0, but you want it to use wlan0 (internet access too). This might require advanced/policy routing to add a second default route in an other routing table and control it using ip rule with possible help from iptables or better: squid's configuration (eg: tcp_outgoing_address)
– A.B
Mar 14 at 21:47
add a comment |
squid is a proxy, so there's no routing involved (ip_forward won't help). Now squid has a default route (internet access) to eth0, but you want it to use wlan0 (internet access too). This might require advanced/policy routing to add a second default route in an other routing table and control it using ip rule with possible help from iptables or better: squid's configuration (eg: tcp_outgoing_address)
– A.B
Mar 14 at 21:47
squid is a proxy, so there's no routing involved (ip_forward won't help). Now squid has a default route (internet access) to eth0, but you want it to use wlan0 (internet access too). This might require advanced/policy routing to add a second default route in an other routing table and control it using ip rule with possible help from iptables or better: squid's configuration (eg: tcp_outgoing_address)
– A.B
Mar 14 at 21:47
squid is a proxy, so there's no routing involved (ip_forward won't help). Now squid has a default route (internet access) to eth0, but you want it to use wlan0 (internet access too). This might require advanced/policy routing to add a second default route in an other routing table and control it using ip rule with possible help from iptables or better: squid's configuration (eg: tcp_outgoing_address)
– A.B
Mar 14 at 21:47
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1405432%2fforward-squid-connected-client-internet-requests-on-eth0-to-wlan0%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1405432%2fforward-squid-connected-client-internet-requests-on-eth0-to-wlan0%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
squid is a proxy, so there's no routing involved (ip_forward won't help). Now squid has a default route (internet access) to eth0, but you want it to use wlan0 (internet access too). This might require advanced/policy routing to add a second default route in an other routing table and control it using ip rule with possible help from iptables or better: squid's configuration (eg: tcp_outgoing_address)
– A.B
Mar 14 at 21:47