Ubuntu Networking :: 11.04 Fresh Install -- Can't Open Ports
Jun 28, 2011
Yesterday I switched from CentOS to Ubuntu, and wanted to install TeamSpeak3 which runs on ports 9987 UDP and 10011 TCP. The TeamSpeak3 worked fine on CentOS before this.
It appears to be running and netstat -an reports:
Code:
udp 0 0 0.0.0.0:9987 0.0.0.0:*
tcp 0 0 0.0.0.0:10011 0.0.0.0:* LISTEN
I believe the only firewall for Ubuntu is "UFW", am I correct? If so, "ufw status" reports:
Code:
Status: inactive
I do have other things running on UDP (Counter Strike Source servers) and people can connect just fine.
When I telnet localhost 10011 I get a response from the TeamSpeak3 server:
Code:
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
TS3
Welcome to the TeamSpeak 3 ServerQuery interface, type "help" for a list of commands and "help <command>" for information on a specific command. However, telnetting from outside just gets no answer, this is what leads me to believe it is a firewall in the way.
View 4 Replies
ADVERTISEMENT
Feb 27, 2011
I had 2 Ethernet ports and neither of them were working on a fresh build a friend was struggling with. After reading the suggestions to fix the issue and thinking that there had to be an easier way I had an epiphany. I would go to my spare parts box and bring out my old Netgear GA311 and pop it into the slot. So after searching for 10 minutes I found it and installed it. Booted up the rig and it found that right away (SWEET) now that's not the fix anybody can do that, once I updated Ubuntu the on-board ports started working (that's what I'm using now). I can't explain what the update did but for a few bucks a used card in the tool box might not be a bad idea!
Mother board is a Gigabyte GAX58A-UD5 Rev.1 Personally I'm an ASUS guy.
View 1 Replies
View Related
Apr 6, 2010
A few months ago I installed Ubuntu 9.10 on my girlfriends laptop, on her request, as she didn't like Windows any more. Since then the internet connection periodically slows down due to too many open ports/connections. Always when this happens I call our ISP and usually there are around 80-200(!) active connections to various IP's.
She is not downloading torrents or anything.
She only uses Firefox and a few open tabs as people do.
Skype is open.
Wireless internet connection.
I am thinking either Ubuntu is updating more or less constantly or the ports/connections aren't closed "after use".
View 7 Replies
View Related
Apr 5, 2011
I'm trying to open my ports all the way, but for some reason, I am unable to do so. I've forwarded the ports I want open in my router (I switched between two routers to make sure), I made exceptions in Firestarter, and I even added UFW rules, but when I use pretty much any and every port checking tool out there, the ports eithere back stealthed or closed.I'm not a complete noob, and I'm not an expert, but I'm p sure I'm doing everything right, seeing as there isn't much to screw up.The reason I'm trying to fully open these ports is because I'm getting this dumb 'No Incoming Connections
View 3 Replies
View Related
Feb 4, 2010
Does Ubuntu come with a firewall preinstalled and running? I need to open port 9997 - how would I got about doing this?
View 2 Replies
View Related
Jan 2, 2011
I have been running Ubuntu 10.10 and have found that at any time I am connected to the Internet that I will randomly see high port numbers open when doing a port scan on my computer all are in the unknown listings with five digit numbers so I don't know what is going on or who is using them. Please check your system to see if you are having the same thing happen by using network tools and filling in your local ip address in the port scan tab. If you shut down your Ethernet interface and run port scans the high ports are no longer open. this will at least keep whoever is using your ports at bay when you are not using the net.
View 4 Replies
View Related
May 14, 2009
Since there was no response on my other post which i spent about a hour writing, ill go for something simpler. I run this on my server
Code:
# set default policy for the NAT table
iptables -t nat -P PREROUTING ACCEPT
[code]...
View 9 Replies
View Related
Jan 30, 2010
I would like to open some port from IN to OUT pop3,smtp.whenever i tried to add some rules to existing iptables it gives me an error.Applying iptables firewall rules: iptables-restore: line 21 failed
View 7 Replies
View Related
Apr 12, 2010
I forwarded ports 28900(TCP/UDP) and 5029(UDP) to my linux box for a game. Testing my ports with a website now shows these ports as "connection refused" rather than "timeout" which means the connections are getting to my system but the iptables are blocking them. But I added 28900 as a test and it still won't accept anything on this port. This is my output of iptables -L
root@BPC3:~# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:28900
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:28900
What do I need to do exactly to add exceptions for 28900 TCP/UDP and 5029 UDP?
View 2 Replies
View Related
Apr 16, 2010
I need to ensure ports 6112 through 6119 are open. I tried using Firestarter to do this, but when I search for what ports are open, it says none of them are. I use Ubuntu 9.04.
View 1 Replies
View Related
Aug 19, 2010
I'm trying to set up an SSH connection from my school to my home, but not on port 22. I originally tried port 2222, but it didn't work. I called my school IT people and they said they block that port. I asked if they care if I set up an SSH and they said no, but that they wouldn't tell me which ports are blocked and which are open for "security" reasons (which I guess I can actually understand). They suggested just using port 22 or 222, but said if a ports open I can use it.
My question is, can I check ports without setting up SSH? It seems like a hassle to try a different port every day on my home SSHD file, come to school, see if it works and repeat. Is there a way I can check my computer home for connections that could connect, even if there isn't a service listening? I don't know how to do that, or even if its possible. If not, I suspect I'll just try a few until I find something that works, or just go ahead and use 22.
View 1 Replies
View Related
May 4, 2010
Normally I use 'netstat -an' to determine if a daemon is listening on a specific port. The excerpt of this command below doesn't list things like vnc (5900) on ipv4. It does however show it on ipv6. My issue is I want to know how to determine if it is indeed listening on ipv4 as would normally be seen with 0.0.0.0:5900. It would appear that all ipv4 ports are internally being redirected to ipv6. Of course this does simplify things, but it also leaves me unable to reliably determine the ipv4 listening status. How I can tell at a glance if a specific ipv4 port is being listened on? Is there a way to force netstat to list the ipv4 listens specifically?
Code:
art@eee1:/proc/sys/net/ipv6$ netstat -an
Active Internet connections (servers and established) .....
View 1 Replies
View Related
May 7, 2010
I've installed a fresh copy of the latest 10.04 distro, lucid lynx and have problems connecting to the machine via ssh because the ports are all blocked (using nmap to check). In past releases, changing the gdm.conf flag "TCPDISALLOW" from true to false would fix this. In the new /etc/gdm/gdm.schemas, I've tried making a similar change, but it's still not opening things up. I've downloaded gufw and have made sure the firewall is off. So, I'm not sure what to try next.
View 1 Replies
View Related
Sep 14, 2010
I just reinstalled my OpenSuse 11.3 with the GNOME desktop. As soon as I was done installing and I was on a fresh desktop, I installed the Yast updates that were available, rebooted, and now I can't login to any of my User accounts. Whenever I try to login, it tells me that it is "Unable to Open Session".o any of you know how I can fix this without having to reinstall all over again
View 1 Replies
View Related
Jan 17, 2016
I scanned my newly installed Debian 8 and found that i have two ports open.
22 for ssh which i want
111 can i safely close port 111 and how?
View 3 Replies
View Related
Feb 1, 2010
I had a fresh install of centos 5.4 x64 on my newly bought lenovo thinkstation D20, the installation went smoothly. after I finished adding users and reboot,I get pass the grub, starting the services, and then.. just blank screen, get nothing there and stuck, can't get into gnome, only option is to power off.the same happens if I install scientific linux, basically same with centos. I also can't boot the scientific linux live cd(the same thing happens, after starting the services, blank screen and stuck). however, I can boot Fedora live cd. but all I want is an EL5.
View 5 Replies
View Related
Apr 20, 2010
How do I open ports 5198/udp and 5199/udp on a slackware based firewall?
View 2 Replies
View Related
Feb 24, 2010
My question to the community is should I preform a fresh install of OpenSuSe 11.2 or upgrade my current version of OpenSuSe 11.1? As of current I just use my system to surf the web check, email and Basic Business needs. The specs of my Laptop are:
OS Information
OS: Linux 2.6.25.20-0.4-default i686
Current user: jraglin@Jada
System: openSUSE 11.1 (i586)
KDE: 3.5.9 "release 49.1"
[Code]...
View 9 Replies
View Related
Jul 26, 2011
I set up a vnc connection to my machine the other day and while doing that checked out any open ports.To my astonishment my ftp port is open, although I double checked the firewall and there's no check in the checkbox for the ftp port. I didn't add a "other ports" rule or anything as well.So, how would I be able to fix that?
View 5 Replies
View Related
Sep 4, 2010
After a fresh Ubuntu 10.04 install, no internet for some reasons.
Here is what I have in ECT/network/interfaces
Here is the results of sudo dhclient:
No working leases in persistent database sleeping.
View 9 Replies
View Related
Oct 30, 2010
I just installed ubuntu 10 on my pc and unfortunatly I don't have internet. I only have one pc wired to my 2wire modem. I want to use dhcp, no static ip if possible.
View 5 Replies
View Related
Aug 21, 2010
I accidentally downloaded a torrent of the ALTERNATIVE ubuntu 10 installer. install went fine except for the part where i had to do the networking part, think i did something wrong there (as in skipped it). past ubuntu installs worked perfect using regular installer. googleing led me to use "lshw", and the command lshw says that the network is disabled (shows correct network controller tho).
View 3 Replies
View Related
Jan 17, 2010
I just installed a fresh Ubuntu over a Vista install on a Compaq 6720s with Wubi.But the wireless doesn't work in Ubuntu. In Vista everything is still fine.I tried two tips from the help program in Ubuntu, but to no avail. I also tried reseting and restarting. Tried the manual swith on the laptop.
View 2 Replies
View Related
May 5, 2010
I decided to do a fresh install of 10.04LTS on a Dell Latitude D600 Laptopne wordDisaster I have no wireless or WIRED internet connection. After viewing another post I've provided the output of "sudo lshw -C network" command below (I've blocked out my MAC address on purpose). It appears that the lan card is not even being recognized. The card is enabled in bios (I've checked twice). I don't get it, the wireless worked fine before I did a fresh install of 10.04LTS. I can't use wireless because I have the b43 driver firmware issue that I can't resolve unless I get my wired connection working.
*-network
description: Network controller
product: BCM4309 802.11a/b/g
[code]...
View 9 Replies
View Related
Jul 10, 2010
So i just intstalled ubutnu for the first time and the internet doesnt seem to be working, i am able to go on some majour websites such as google and gmail but others i am unable to visit.
I tried creating a blacklist-ipv6.conf file in the appropirate location
and i have even tried turining off ipv6 i forfox about config by chagning the value o true
but without any luck.
btw i tried pinging google and it works
my computer is connected to a t homehub and these are some screenshots i thought you might find useful.
View 9 Replies
View Related
Sep 16, 2010
I just installed 9.10 to a dell inspiron 531s and neither the ethernet nor the wireless will find a signal. The results of sudo lshw -c network are
*-network
product: BCM4318 [AirForce One 54g] 802.11g wireless LAN controller
vendor: Broadcom Corporation
[code]...
View 1 Replies
View Related
May 13, 2011
i have a dual boot system with xp and ubuntu 10.10 (which i recently installed). The internet works fine on my xp but on ubunutu it did not work.
i tried few things, like changing the proxy setting in mozilla firefox etc, but i did not work
i am attaching snapshot of ifconfig, resolve.conf and route-a commands for your referral
View 9 Replies
View Related
Jun 29, 2011
I have installed ubuntu, xubuntu on this laptop with usb drives and even net install wont work. Once the os gets installed i see no indication that the ethernet is even there...
lspci:
00:00.0 Host bridge: Intel Corporation N10 Family DMI Bridge
00:02.0 VGA compatible controller: Intel Corporation N10 Family Integrated Graphics Controller
[Code]...
My wireless works with Broadcom support. The ethernet has never worked, i think when windows was still on it, it did.
View 9 Replies
View Related
Jul 26, 2011
I've had so many issues with 11.04 Natty that could not be solved I just fresh installed Ubuntu 10.04 from a USB as my netbook does not have a CD drive. Well, after installing and restarting I have no wireless. I ran iwconfig and I got pan0 no wireless extensions. How do I fix this?lspci says
ken@ken-laptop:~$ lspci
00:00.0 Host bridge: Intel Corporation N10 Family DMI Bridge
00:02.0 VGA compatible controller: Intel Corporation N10 Family Integrated Graphics
[code]...
View 4 Replies
View Related
Aug 1, 2011
After a fresh install of Ubuntu 11.04 (from 10.04) and spending several hours trying to figure out why the ad-hoc connection between my two computers (Fedora14 <-> Ubuntu 11.04) no longer worked - it had worked fine for almost 2 years with 10.04 - I've finally concluded it was a DHCP problem. This realisation (which was slow in coming!) dawned on me when I reversed my setup and configured the Fedora box as the DHCP server and everything was suddenly working perfectly! A quick internet search threw up an installation file called "isc-dhcp-server" which other Ubuntu 11.04 - related forums are also complaining about. My problem is that this file, although available in the repository, is not even installed!!!
It seems unlikely that the developers forgot to include DHCP support, so I hope someone can point me in the right direction.
View 1 Replies
View Related