01-12-2016
The main servers are Redhat. The client laptops are windows and OS X.
6 More Discussions You Might Find Interesting
1. IP Networking
Hi,
I am involved in a project on Debian. One of my requirement is to route an IP packet in my application to a proxy server and receive the reply from the proxy server as an IP packet. My application handles data at the IP frame level. My application creates an IP packet(with all the necessary... (0 Replies)
Discussion started by: Rajesh_BK
0 Replies
2. Cybersecurity
Setting up an Internet proxy - need help
Hi guys
In the past I had set a computer to act as an Internet proxy. This would be multihomed, and running dansguardian, tinyproxy and firehol. Then webmin would be used as interface. By time I realised that this system is far from effective....
Is... (0 Replies)
Discussion started by: ramon82
0 Replies
3. UNIX for Dummies Questions & Answers
In our country, blogspot.com, twitter.com facebook.com....and more excellent sites are blocked by the Goverment FireWall, who can help me ? thanks a lot for your kind. (2 Replies)
Discussion started by: shuke
2 Replies
4. Linux
I was wondering if it is possible to setup SFTP to go through the internet proxy while connecting to an internet location.
Problem: Client system is behind internet proxy. SFTP to any internet location fails as there is no documented way to configure SFTP to connect to internet locations through... (4 Replies)
Discussion started by: toobrown1
4 Replies
5. UNIX and Linux Applications
Hi Everyone!
A friend of mine is looking for a way to limit time his kids spent on the internet. I told him he should try out Squid proxy server. He now tries to find a way to limit total time spend on the internet to "X" hours a day, at any time during the day.
I remember there are built-in... (3 Replies)
Discussion started by: togr
3 Replies
6. IP Networking
I need to configure a proxy on my local machine to use an upstream proxy (installed on another machine). The upstream proxy requires Digest/NTLM authorization. I want the local proxy to deal with the upstream proxy's authorization details and provides authorization free access to users that connect... (0 Replies)
Discussion started by: Russel
0 Replies
LEARN ABOUT DEBIAN
net::proxy::connector::tcp
Net::Proxy::Connector::tcp(3pm) User Contributed Perl Documentation Net::Proxy::Connector::tcp(3pm)
NAME
Net::Proxy::Connector::tcp - Net::Proxy connector for standard tcp proxies
SYNOPSIS
# sample proxy using Net::Proxy::Connector::tcp
use Net::Proxy;
my $proxy = Net::Proxy->new(
in => { type => tcp, port => '6789' },
out => { type => tcp, host => 'remotehost', port => '9876' },
);
$proxy->register();
Net::Proxy->mainloop();
DESCRIPTION
"Net::Proxy::Connector::tcp" is a connector for handling basic, standard TCP connections.
CONNECTOR OPTIONS
The connector accept the following options:
"in"
o host
The listening address. If not given, the default is "localhost".
o port
The listening port.
"out"
o host
The remote host.
o port
The remote port.
o timeout
The socket timeout for connection ("out" only).
AUTHOR
Philippe 'BooK' Bruhat, "<book@cpan.org>".
COPYRIGHT
Copyright 2006 Philippe 'BooK' Bruhat, All Rights Reserved.
LICENSE
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
perl v5.10.1 2009-10-18 Net::Proxy::Connector::tcp(3pm)