LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora
User Name
Password
Fedora This forum is for the discussion of the Fedora Project.

Notices


Reply
  Search this Thread
Old 06-12-2008, 02:32 PM   #1
KrazyStuntRR
LQ Newbie
 
Registered: Jun 2008
Distribution: Fedora 9
Posts: 15

Rep: Reputation: 0
Azureus Port Forwarding Problem


i've just installed Azureus and no torrents seem to work
I went into Tools > Options and tested ports and any number
I input into the box says are closed, I read I need to port
forward since i'm using a D-Link DIR-625 router I followed
steps to port forward but still nothing when I enter my IP
into the router settings i get the following error
IP address for 'Azur1' should be within LAN subnet (192.168.0.0)
 
Old 06-12-2008, 02:53 PM   #2
KrazyStuntRR
LQ Newbie
 
Registered: Jun 2008
Distribution: Fedora 9
Posts: 15

Original Poster
Rep: Reputation: 0
K that problem has been solved found the page with the router map of the IP I was to enter so that setting should be all dandy but however Azureus still fails when I speed test or test NAT / Firewall Port i used in the port forwarding settings.
 
Old 06-12-2008, 04:50 PM   #3
sycamorex
LQ Veteran
 
Registered: Nov 2005
Location: London
Distribution: Slackware64-current
Posts: 5,836
Blog Entries: 1

Rep: Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251
I might be wrong now, but forwarding a port on your router might not be enough. What about your system firewall?
 
Old 06-13-2008, 12:46 AM   #4
KrazyStuntRR
LQ Newbie
 
Registered: Jun 2008
Distribution: Fedora 9
Posts: 15

Original Poster
Rep: Reputation: 0
thats what i'm thinking and i'm a total newb to Linux so this whole
SELinux firewall thing is like another language to me lol do you or
anyone reading know how to set the firewall up so that either transmission
or Azureus work.
 
Old 06-13-2008, 05:21 AM   #5
sycamorex
LQ Veteran
 
Registered: Nov 2005
Location: London
Distribution: Slackware64-current
Posts: 5,836
Blog Entries: 1

Rep: Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251
you can try to change the status of selinux to permissive:

Open the file /etc/selinux/config and change the value:
SELINUX=enforcing to SELINUX=permissive
AFAIK, you need to reboot the system for the change to take effect. It will warn you about the things that it would normally block but it'll not block anything. You can change it back if it doesn't help.

When it comes to Iptables (the firewall), as root try to issue
the following command:
iptables -A INPUT -p tcp --dport xxx -j ACCEPT
iptables -A INPUT -p udp --dport xxx -j ACCEPT

(if that doesn't work, try /sbin/iptables -A...........etc)

where xxx is the port number.
and then to save the state of iptables
/sbin/service iptables save

to check the iptables status:

iptables -L

There is a tutorial on iptables (basic configuration is not really difficult)
http://forums.pcper.com/showthread.php?t=432469

hth
 
Old 06-13-2008, 01:59 PM   #6
KrazyStuntRR
LQ Newbie
 
Registered: Jun 2008
Distribution: Fedora 9
Posts: 15

Original Poster
Rep: Reputation: 0
got it working it started working once i turned off the firewall
but speeds are extremely slow i dont reach speeds over 40kb/s when downloading

so i started the firewall again and wanted to try your suggestions
once i get the firewall started whenever I try your commands i get
the following
bash: iptables: command not found

to even get the firewall running I had to type
/sbin/service iptables start

so thought I would try your command with the /sbin/service infront of it
and I get the following message from this command
/sbin/service iptables -A INPUT -p tcp --dport xxx -j ACCEPT
Usage: iptables {start|stop|restart|condrestart|status|panic|save}

Last edited by KrazyStuntRR; 06-13-2008 at 02:22 PM.
 
Old 06-13-2008, 06:39 PM   #7
KrazyStuntRR
LQ Newbie
 
Registered: Jun 2008
Distribution: Fedora 9
Posts: 15

Original Poster
Rep: Reputation: 0
ok the iptables problem was solved didn't
realize there was a difference between the
su and su - login

so I typed in what you had told me too and
still Azureus fails the NAT/FIREWALL tests.
 
Old 06-13-2008, 06:49 PM   #8
sycamorex
LQ Veteran
 
Registered: Nov 2005
Location: London
Distribution: Slackware64-current
Posts: 5,836
Blog Entries: 1

Rep: Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251
what does your:
/sbin/iptables -L
show?
 
Old 06-13-2008, 07:53 PM   #9
KrazyStuntRR
LQ Newbie
 
Registered: Jun 2008
Distribution: Fedora 9
Posts: 15

Original Poster
Rep: Reputation: 0
iptables -L

Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
ACCEPT icmp -- anywhere anywhere
ACCEPT all -- anywhere anywhere
ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ssh
REJECT all -- anywhere anywhere reject-with icmp-host-prohibited
ACCEPT tcp -- anywhere anywhere tcp dpt:51515
ACCEPT udp -- anywhere anywhere udp dpt:51515

Chain FORWARD (policy ACCEPT)
target prot opt source destination
REJECT all -- anywhere anywhere reject-with icmp-host-prohibited

Chain OUTPUT (policy ACCEPT)
target prot opt source destination
 
Old 06-14-2008, 12:22 AM   #10
KrazyStuntRR
LQ Newbie
 
Registered: Jun 2008
Distribution: Fedora 9
Posts: 15

Original Poster
Rep: Reputation: 0
kk all fixed gettin remotely decent speeds of 200-250kb/s but that could just be the torrent itself and the peers/seeders
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
port forwarding problem! shio Linux - Networking 3 10-16-2007 05:16 AM
IPCHAINS port forwarding and IPTABLES port forwarding ediestajr Linux - Networking 26 01-14-2007 07:35 PM
Port Forwarding for Azureus redmap Red Hat 6 04-02-2006 01:21 PM
how to make azureus (or any port forwarding) works in my suse 9.3 box and squid proxy efm Linux - Newbie 0 10-31-2005 01:22 AM
port forwarding problem roueleader Linux - Newbie 9 06-11-2002 04:44 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora

All times are GMT -5. The time now is 09:54 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration