# dukto **Repository Path**: 8ox86/dukto ## Basic Information - **Project Name**: dukto - **Description**: Dukto project from sf: http://sourceforge.net/p/dukto/ - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2018-07-19 - **Last Updated**: 2022-05-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # dukto Dukto project from sf: http://sourceforge.net/p/dukto/ ## firewall rules dukto uses **TCP** or **UDP** port **4644** for receiving a message. so ,be aware to open 4644 to everybody on the LAN. if you don't do so, you'll not be able to see any other buddies on the LAN. for example, shorewall ```bash cd /etc/shorewall sudo vim rules ``` add the following lines: ```ini #dukto r6 ACCEPT net $FW tcp 4644 ACCEPT net $FW udp 4644 ``` then, ```bash sudo sytemctl restart shorewall ``` iptables directly : ```bash /sbin/iptables -I INPUT -p tcp --dport 4644 -j ACCEPT /sbin/iptables -I INPUT -p udp --dport 4644 -j ACCEPT ``` windows or mac ox user plz just do the same job as above. document created by [荒野无灯](http://ihacklog.com) @ 2015-05-25 thanks to [colomboe](http://sourceforge.net/u/colomboe/) for bringing us this wonderful software! ---EOF