mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Add UDP bit torrent traffic rule to wizard
This commit is contained in:
parent
914b7021c7
commit
e801f66230
@ -443,8 +443,10 @@ function step5_stepsubmitphpaction() {
|
||||
/* To add p2p clients, push Descr,Protocol,Start,End,src/dest/both onto p2plist */
|
||||
if($_POST['aimster'] != "")
|
||||
$p2plist[] = array('Aimster', 'tcp', '7668', '7668', 'both');
|
||||
if($_POST['bittorrent'] != "")
|
||||
if($_POST['bittorrent'] != "") {
|
||||
$p2plist[] = array('BitTorrent', 'tcp', '6881', '6999', 'both');
|
||||
$p2plist[] = array('BitTorrent', 'udp', '6881', '6999', 'both');
|
||||
}
|
||||
if($_POST['buddyshare'] != "")
|
||||
$p2plist[] = array('BuddyShare', 'tcp', '7788', '7788', 'both');
|
||||
if($_POST['cutemx'] != "")
|
||||
|
||||
Loading…
Reference in New Issue
Block a user