프록시 서버의 작동 방식과 인터넷을 통해 데이터를 제공하는 방식이 궁금하실 것입니다. 이 블로그에서는 핵심 NodeJ를 사용하여 프록시 서버를 구현하려고 합니다. 이미 NodeJ와 함께 제공되는 net이라는 핵심 NodeJs 패키지를 사용하여 이를 구현했습니다.
프록시 서버는 클라이언트와 서버 사이의 에이전트입니다.
클라이언트가 서버에 요청을 보내고 대상 프록시로 전달됩니다.
섬기는 사람. 대상 프록시 서버가 요청을 처리하고 보냅니다.
메인 서버로 전송되고 메인 서버는
에 백 요청을 보냅니다.
프록시 서버와 프록시 서버가 클라이언트에 요청을 보냅니다.
프로그래밍을 시작하기 전에는 소켓과 NodeJ에 대해 거의 알지 못합니다. 소켓이 무엇인지, 어떻게 작동하는지 알고 있습니다.
NodeJ에는 프록시 서버를 구현하는 두 가지 방법이 있습니다. 첫 번째는 사용자 정의 방법이고 두 번째는 내장형입니다. 둘 다 이해하기 쉽습니다.
프록시 서버를 테스트하려면 로컬 컴퓨터에서 로컬 HTTP 서비스를 실행한 다음 호스트 컴퓨터를 대상으로 지정할 수 있습니다.
const net = require('net'); // Define the target host and port const targetHost = 'localhost'; // Specify the hostname of the target server. For Ex: (12.568.45.25) const targetPort = 80; // Specify the port of the target server
const server = net.createServer((clientSocket) => { }); // Start listening for incoming connections on the specified port const proxyPort = 3000; // Specify the port for the proxy server server.listen(proxyPort, () => { console.log(`Reverse proxy server is listening on port ${proxyPort}`); });
서버 함수 콜백에는 clientSocket 매개변수가 하나 있는데, 이는 연결을 위해 수신한 사용자 연결입니다.
사용자로부터 데이터 수락 및 수신
const targetHost = 'localhost'; // Specify the hostname of the target server. For Ex: (12.568.45.25) const targetPort = 80; // Specify the port of the target server // Create a TCP server const server = net.createServer((clientSocket) => { // Establish a connection to the target host net.createConnection({host: targetHost, port: targetPort}, () => { // When data is received from the client, write it to the target server clientSocket.on("data", (data) => { targetSocket.write(data); }); // When data is received from the target server, write it back to the client targetSocket.on("data", (data) => { clientSocket.write(data); }); }); });
clientSocket.on("data", (data) => { targetSocket.write(data); });
targetSocket.on("data", (data) => { clientSocket.write(data); });
프록시 서버의 기능을 탐색하는 것은 흥미롭지만 안정성을 보장하려면 예상치 못한 문제를 적절하게 처리할 수 있는 강력한 오류 처리 방법이 필요합니다. 이러한 유형의 오류를 처리하기 위해 오류라는 이벤트가 있습니다. 구현이 매우 쉽습니다.
const server = net.createServer((clientSocket) => { // Establish a connection to the target host const targetSocket = net.createConnection({host: targetHost,port: targetPort}, () => { // Handle errors when connecting to the target server targetSocket.on('error', (err) => { console.error('Error connecting to target:', err); clientSocket.end(); // close connection }); // Handle errors related to the client socket clientSocket.on('error', (err) => { console.error('Client socket error:', err); targetSocket.end(); // close connection }); }); });
const net = require('net'); // Define the target host and port const targetHost = 'localhost'; // Specify the hostname of the target server const targetPort = 80; // Specify the port of the target server // Create a TCP server const server = net.createServer((clientSocket) => { // Establish a connection to the target host const targetSocket = net.createConnection({ host: targetHost, port: targetPort }, () => { // When data is received from the target server, write it back to the client targetSocket.on("data", (data) => { clientSocket.write(data); }); // When data is received from the client, write it to the target server clientSocket.on("data", (data) => { targetSocket.write(data); }); }); // Handle errors when connecting to the target server targetSocket.on('error', (err) => { console.error('Error connecting to target:', err); clientSocket.end(); }); // Handle errors related to the client socket clientSocket.on('error', (err) => { console.error('Client socket error:', err); targetSocket.end(); }); }); // Start listening for incoming connections on the specified port const proxyPort = 3000; // Specify the port for the proxy server server.listen(proxyPort, () => { console.log(`Reverse proxy server is listening on port ${proxyPort}`); });
클라이언트와 서버 연결의 복잡성을 줄이기 위해 메소드 파이프가 내장되어 있습니다. 이 구문을 대체하겠습니다
// Handle errors when connecting to the target server targetSocket.on("data", (data) => { clientSocket.write(data); }); // When data is received from the client, write it to the target server clientSocket.on("data", (data) => { targetSocket.write(data); });
이 구문에
// Pipe data from the client to the target clientSocket.pipe(targetSocket); // When data is received from the client, write it to the target server targetSocket.pipe(clientSocket);
const net = require('net'); // Define the target host and port const targetHost = 'localhost'; const targetPort = 80; // Create a TCP server const server = net.createServer((clientSocket) => { // Establish a connection to the target host const targetSocket = net.createConnection({ host: targetHost, port: targetPort }, () => { // Pipe data from the client to the target clientSocket.pipe(targetSocket); // Pipe data from the target to the client targetSocket.pipe(clientSocket); }); // Handle errors targetSocket.on('error', (err) => { console.error('Error connecting to target:', err); clientSocket.end(); }); clientSocket.on('error', (err) => { console.error('Client socket error:', err); targetSocket.end(); }); }); // Start listening for incoming connections const proxyPort = 3000; server.listen(proxyPort, () => { console.log(`Reverse proxy server is listening on port ${proxyPort}`); });
GitHub avinashtare에서 팔로우하세요. 감사합니다.
위 내용은 Node.js를 사용하여 스크래치 프록시 서버를 구축하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!