CentOS 명령 문제

CentOS 명령 문제

이것이 CentOS 5를 사용하여 VMware에서 실행하려고 시도한 것입니다.

/pwnat: invalid option -- p
usage: ./pwnat <-s | -c> <args>
  -c    client mode (default)
        <args>: [local ip] <local port> <proxy host> [proxy port (def:2222)] <remote host> <remote port>
  -s    server mode
        <args>: [local ip] [proxy port (def:2222)] [[allowed host]:[allowed port] ...]
  -6    use IPv6
  -v    show debug output (up to 2)
  -h    show this help and exit
./pwnat -c 3.3.3.3 -p 4444 --proxyhost IP 3.3.3.4 -proxyport 2222 --remotehost IP 8.8.8.8 --remoteport 4444
resulting in this reply 
invalid option -- p

답변1

지정한 매개변수가 올바르지 않습니다. 당신이 보면폰넷 홈페이지-p(또는 표시된 도움말 텍스트를 실제로 읽으십시오.) 등의 매개변수 가 없음을 알 수 있습니다 --proxyhost. (단일 -c 옵션을 사용하여 IP 주소 뒤에만 제공됩니다.)

위에 링크된 pwnat 홈페이지에는 여전히 문제가 있는 경우 도움이 될 몇 가지 예가 있습니다.

답변2

어디서 왔니 --proxyhost? ?

이것문서예를 들어:

./pwnat -c 8000 <pwnat.server.com> google.com 80

그러니 이것을 시도해 보세요:

./pwnat -c 4444 3.3.3.4 2222 8.8.8.8 4444

관련 정보