| Summary: | portsentry starts only tcp listener but not the udp one | ||
|---|---|---|---|
| Product: | Sisyphus | Reporter: | Vadim V. Zhytnikov <vvzhy> |
| Component: | portsentry | Assignee: | Nobody's working on this, feel free to take it <nobody> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | minor | ||
| Priority: | P4 | ||
| Version: | unstable | ||
| Hardware: | all | ||
| OS: | Linux | ||
Fixed in portsentry-1.1-alt3. Fixed in portsentry-1.1-alt3. |
The portsentry service script /etc/rc.d/init.d/portsentry starts only tcp listener portsentry -atcp but not udp ones portsentry -audp --- --- Suggested patch: -------------------------------------------------- --- portsentry.orig Tue Jul 31 11:27:57 2001 +++ portsentry Mon Jul 15 11:19:23 2002 @@ -28,17 +28,13 @@ start() { - echo -n \"Starting tcp port scan detector: \" - daemon portsentry -atcp + action \"Starting tcp port scan detector: \" portsentry -atcp RETVAL=$? [ $RETVAL -eq 0 ] && touch \"$LOCKFILE\" - echo - echo -n \"Starting udp port scan detector: \" - daemon portsentry -audp + action \"Starting udp port scan detector: \" portsentry -audp RETVAL=$? [ $RETVAL -eq 0 ] && touch \"$LOCKFILE\" - echo } stop() -------------------------------------------------------