search
HomeBackend DevelopmentPHP TutorialSample_PHP tutorial on using fork and socket on php

最近剛好遇到一個頭大的問題寫了這個code讓大家參考一下吧
家裏的無線AP功能不太好,他只提供把外部真實IP map 到 Nat裡面的某個IP
不能指定某個port map到某個內部IP的Port
可是我已經把外部的IP Map到內部的Linux);" href="javascript:;" target=_self>Linux Server上,
但是我又想從外部使用VNC連到內部的一台Windows電腦。
所以就寫了這個程式
原理是這樣

這個程式會在Linux Server上開一個Port作Listen的動作
當外部連到這個Port時,程式會再開啟另一個連線連到內部Windows的VNC上
把外部的封包原封不動的丟到VNC的連線上,然後把VNC連線傳回的資料原封不動的再丟回外部的Port

程式碼:
<br><font face="NSimsun">#!/usr/bin/php -q<br></font><font color="#000000"><font face="NSimsun"><font color="#0000bb"><?php <BR> $IP</font><font color="#007700">=</font><font color="#dd0000">192.168.1.1</font><font color="#007700">;</font></font><font face="NSimsun"><font color="#ff8000">//Windows電腦的IP<br> </font><font color="#0000bb">$Port</font><font color="#007700">=</font><font color="#dd0000">5900</font><font color="#007700">;        </font></font><font face="NSimsun"><font color="#ff8000">//VNC使用的Port<br> </font><font color="#0000bb">$ServerPort</font><font color="#007700">=</font><font color="#dd0000">9999</font><font color="#007700">;</font></font><font face="NSimsun"><font color="#ff8000">//Linux Server對外使用的Port<br> </font><font color="#0000bb">$RemoteSocket</font><font color="#007700">=</font><font color="#0000bb">false</font><font color="#007700">;</font></font><font face="NSimsun"><font color="#ff8000">//連線到VNC的Socket<br> </font><font color="#007700">function</font><font color="#0000bb">SignalFunction</font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#40;$Signal)<br> </font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#123;<br>   //這是主Process的訊息處理函數<br>  </font><font color="#007700">global</font><font color="#0000bb">$PID</font><font color="#007700">;</font></font><font face="NSimsun"><font color="#ff8000">//Child Process的PID<br>  </font><font color="#007700">switch &</font></font><font face="NSimsun"><font color="#ff8000">#40;$Signal)<br>  </font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#123;<br>   </font><font color="#007700">case</font><font color="#0000bb">SIGTRAP</font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#58;<br>   </font><font color="#007700">case</font><font color="#0000bb">SIGTERM</font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#58;<br>    //收到結束程式的Signal<br>    </font><font color="#007700">if&</font></font><font face="NSimsun"><font color="#ff8000">#40;$PID)<br>    </font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#123;<br>     //送一個SIGTERM的訊號給Child告訴他趕快結束掉嘍<br>     </font><font color="#0000bb">posix_kill</font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#40;$PID,SIGTERM);<br>     //等待Child Process結束,避免zombie<br>     </font><font color="#0000bb">pcntl_wait</font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#40;$Status);<br>    </font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#125;<br>    //關閉主Process開啟的Socket<br>    </font><font color="#0000bb">DestroySocket</font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#40;);<br>    </font><font color="#007700">exit&</font></font><font face="NSimsun" color="#ff8000">#40;0); //結束主Process<br>    </font><font face="NSimsun"><font color="#007700">break;<br>   case</font><font color="#0000bb">SIGCHLD</font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#58;<br>    /*<br>當Child Process結束掉時,Child會送一個SIGCHLD訊號給Parrent<br>當Parrent收到SIGCHLD,就知道Child Process已經結束嘍 ,該做一些<br>結束的動作*/<br>    </font><font color="#007700">unset&</font></font><font face="NSimsun"><font color="#ff8000">#40;$PID); //將$PID清空,表示Child Process已經結束<br>    </font><font color="#0000bb">pcntl_wait</font><font color="#007700">&</font></font><font face="NSimsun" color="#ff8000">#40;$Status); //避免Zombie<br>    </font><font face="NSimsun" color="#007700">break;<br>   default&</font><font face="NSimsun"><font color="#ff8000">#58;<br>  </font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#125;<br> </font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#125;<br> </font><font color="#007700">function</font><font color="#0000bb">ChildSignalFunction</font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#40;$Signal)<br> </font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#123;<br>//This is the message processing function of Child Process <br> </font><font color="#007700">switch &</font></font><font face="NSimsun"><font color="#ff8000">#40;$Signal)<br> </font><font color="#007700"> &</font></font><font face="NSimsun"><font color="#ff8000">#123;<br> </font><font color="#007700">case</font><font color="#0000bb">SIGTRAP</font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#58;<br> </font><font color="#007700">case</font><font color="#0000bb">SIGTERM</font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#58;<br>//Child Process received the end message<br> </font><font color="#0000bb">DestroySocket</font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#40;); //Close Socket<br> </font><font color="#007700">exit&</font></font><font face="NSimsun"><font color="#ff8000">#40;0); //End Child Process<br> </font><font color="#007700">default&</font></font><font face="NSimsun"><font color="#ff8000">#58;<br> </font><font color="#007700">&</font></font><font face="NSimsun"><font color="#ff8000">#125;<br> ></font>}<font color="#007700"> ;</font> </font><font face="NSimsun">&<font color="#ff8000"><br></font><font color="#007700">#123;</font> //Child Process Socket processing function<font color="#0000bb"> //$ConnectedServerSocket -> Externally connected Socket</font> <font color="#007700"></font>global</font><font face="NSimsun">$ServerSocket<font color="#ff8000"><br>,</font><font color="#007700">$RemoteSocket</font></font>,<font face="NSimsun"><font color="#ff8000">$IP<br><br>,<br></font>$Port<font color="#007700"></font><font color="#0000bb"></font>;<font color="#007700"> >$ConnectedServerSocket</font><font color="#0000bb"></font>;<font color="#007700"> declare </font>
<font color="#0000bb"></font><font color="#007700">http://www.bkjia.com/PHPjc/508267.html</font><font color="#0000bb">www.bkjia.com</font></font>true<font face="NSimsun"><font color="#007700">http: //www.bkjia.com/PHPjc/508267.html<br></font>TechArticle<font color="#0000bb"></font>I just encountered a big problem recently and wrote this code for your reference. Does the wireless AP function at home work? Great, it only provides mapping of the external real IP to a certain IP in Nat. It cannot refer to...<font color="#007700"></font><font color="#0000bb"></font>
</font><font face="NSimsun" color="#007700"></font></font>

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software