Sponsored Content
Full Discussion: Network
Special Forums IP Networking Network Post 5913 by ornot2b on Sunday 26th of August 2001 05:00:37 PM
Old 08-26-2001
Bug

Success:

I did some searching on the web and found that I needed to turn the Win98 box connected to the net into a proxy server. I found a program called AnalogX Proxy that works great.

Thanks for the posts.
 

8 More Discussions You Might Find Interesting

1. Programming

Help in developing a Network Appliation to monitor pc in a network

I am developing a Network Appliation to monitor computers in a network. Specs are App monitors the current web page viewed in each system App also can shutdown the computer in the network App can show all process run by each computer in the network I am now confused how to start my... (2 Replies)
Discussion started by: valaparambil88
2 Replies

2. IP Networking

ssh server is attachable from local network not from another network

hello i have a ubuntu ssh server that i can acess from any of my comnputers but only if they are on the same wireless network as the server. i tested trhis my tehtehring my samsung blackjack to my windows partition and installing openssh to windows it works when windows is on the wireless but no... (1 Reply)
Discussion started by: old noob
1 Replies

3. UNIX for Advanced & Expert Users

Network Shell Script & Blade Logic & Network Security

I am going to take up a position in Data & Network Security. I would need to write network shell scripts doing the following task: Going to around 2000 servers and findout which groups has access to each servers and which ids are there in each group that has access. I need to implement... (1 Reply)
Discussion started by: pinnacle
1 Replies

4. Solaris

configure zones to have different network interface and network

i need to configure a zone to use different interface (bge2) than global and have connected to completely different network switch & to use its own defaultrouter and hosts file .. is it possible ..if so ..how ? Thanks (9 Replies)
Discussion started by: skamal4u
9 Replies

5. UNIX and Linux Applications

Access to network interface (Mac-network)

Hi, I'm a italian student. For my thesis I develop a gateway with protocol 6lowpan. For that I must access to network interface to develope my personal stack based on standard 802.15.4. Can you help me? I need an explanation for that. (0 Replies)
Discussion started by: berny88
0 Replies

6. Solaris

No network cable But Network interface is UP and Running

I've one Netra 240 After changing main board and system configuration card reader, Network is not accessible any more, Network interfaces are always UP and Running even when there is no cable connected to Network interfaces. I tried to restart and plumb/unplumb with no luck. ifconfig -a... (7 Replies)
Discussion started by: samer.odeh
7 Replies

7. Red Hat

Network becomes slow and return fast only after restart network

Hi, I have 2 machines in production environment: 1. redhat machine for application 2. DB machine (oracle) The application doing a lot of small read&writes from and to the DB machine. The problem is that after some few hours the network from the application to the DB becomes very slow and... (4 Replies)
Discussion started by: moshesa
4 Replies

8. IP Networking

I would like to monitor network traffic for a computer on my network

My son does homework on a school laptop. I was thinking about setting up a gateway on my home network, so that I can monitor web traffic and know if he is doing his homework without standing over his shoulder. Ideally I would like to use the Raspberry Pi Model b that I already have. However, I... (15 Replies)
Discussion started by: gandolf989
15 Replies
Net::Proxy::Connector(3pm)				User Contributed Perl Documentation				Net::Proxy::Connector(3pm)

NAME
Net::Proxy::Connector - Base class for Net::Proxy protocols SYNOPSIS
# # template for the zlonk connector # package Net::Proxy::Connector::zlonk; use strict; use Net::Proxy::Connector; our @ISA = qw( Net::Proxy::Connector ); # here are the methods you need to write for your connector # if it can be used as an 'in' connector sub listen { } sub accept_from { } # if it can be used as an 'out' connector sub connect { } # to process data sub read_from { } sub write_to { } 1; DESCRIPTION
"Net::Proxy::Connector" is the base class for all specialised protocols used by "Net::Proxy". METHODS
Class methods The base class provides the following methods: new() Instance methods set_proxy( $proxy ) Define the proxy that "owns" the connector. get_proxy() Return the "Net::Proxy" object that "owns" the connector. is_in() Return a boolean value indicating if the "Net::Proxy::Connector" object is the "in" connector of its proxy. is_out() Return a boolean value indicating if the "Net::Proxy::Connector" object is the "out" connector of its proxy. new_connection_on( $socket ) This method is called by "Net::Proxy" to handle incoming connections, and in turn call "accept_from()" on the 'in' connector and "connect()" on the 'out' connector. raw_read_from( $socket ) This method can be used by "Net::Proxy::Connector" subclasses in their "read_from()" methods, to fetch raw data on a socket. raw_write_to( $socket, $data ) This method can be used by "Net::Proxy::Connector" subclasses in their "write_to()" methods, to send raw data on a socket. raw_listen( ) This method can be used by "Net::Proxy::Connector" subclasses in their "listen()" methods, to create a listening socket on their "host" and "port" parameters. raw_accept_from( $socket ) This method can be used internaly by "Net::Proxy::Connector" subclasses in their "accept_from()" methods, to accept a newly connected socket. Subclass methods The following methods should be defined in "Net::Proxy::Connector" subclasses: Initialisation init() This method initalise the connector. Processing incoming/outgoing data read_from( $socket ) Return the data that was possibly decapsulated by the connector. write_to( $socket, $data ) Write $data to the given $socket, according to the connector scheme. "in" connector listen() Initiate listening sockets and return them. This method can use the "raw_listen()" method to do the low-level listen call. accept_from( $socket ) $socket is a listening socket created by "listen()". This method returns the connected socket. This method can use the "raw_accept_from()" method to do the low-level accept call. "out" connector connect() Return a socket connected to the remote server. 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(3pm)
All times are GMT -4. The time now is 11:19 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy