diff options
author | krakjoe <joe.watkins@live.co.uk> | 2013-11-29 20:03:50 +0000 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2013-11-29 20:03:50 +0000 |
commit | 195c518dd12a8c4fa29f20d1fdab4cc0b29c74cd (patch) | |
tree | fc09a87059cedfa5624f01a562cf827a14a2c2fa /tutorials | |
parent | 31c4861f67f24c8a9a1b89f7cc33105c562b6863 (diff) | |
download | php-git-195c518dd12a8c4fa29f20d1fdab4cc0b29c74cd.tar.gz |
...
Diffstat (limited to 'tutorials')
-rw-r--r-- | tutorials/remote.md | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/tutorials/remote.md b/tutorials/remote.md index aed145f30d..72bac6efb1 100644 --- a/tutorials/remote.md +++ b/tutorials/remote.md @@ -23,8 +23,31 @@ This will initialize phpdbg in Remote Console Mode, using port 4000 for stdin an To stop the service, send *SIGINT* to the phpdbg process, this will force it to bailout, as gracefully as it ever does. -*To get help using these options see the help menu in phpdbg "help options"* +Specific Ports +-------------- +To listen on specific ports, the -l flag will accept a pair of ports in the following way: + +``` +./phpdbg -l4000/8000 +``` + +Specific Interfaces +------------------- + +To bind to a specific interface, or all interfaces use the -a flag: + +``` +./phpdbg -l4000 -a192.168.0.3 +``` + +Will bind the Remote Console to the interface with the specified address, while: + +``` +./phpdbg -l4000 -a +``` + +Will bind the Remote Console to all available addresses. Starting phpdbg-jui Anywhere ============================ |