Outgoing port scan to find blocked (by ISP)/open ports

Hi,
How can I do a port scan (network ports, where web pages/applications use port number 80 for example)? I would like to find out if my ISP are blocking ports -- get some hard data/facts. I've tried using an online port scanner (one that operates from a web page/server) and according to it, all my ports are blocked -- but I now realise that's incoming (to me) where I didn't initialise the communication. So I suppose to find out what I want I need to initialise the communication -- outgoing (from me) communication. How can I do this? Any software / utilities available anywhere? I tried the "port scan" in Network Utility but this never reported anything. Maybe that will do what I want but I didn't have it set up properly possibly?
Any suggestions / ideas much apprecaited.
Cheers,
John.

Hi,
I'm not sure what you're asking.
What I'm asking about is in connection with the action that some ISP's take described as "traffic shaping". I know they are filtering/blocking because all P2P applications stop working for a period of time each day while email and web pages continue to work fine for example. I'm thinking of complaining to varous organisations because I have it in writing from the ISP they don't do this. They do, but I just want a bit more factual data first, before spending time and money making official complaints.
ISP's rarely block outbound packets
Well there's traffic shaping of some sort happening. I've found out that all incoming initialted outside packets are blocked but things still work fine so I assumed it must be outgoing which are being blocked.
If you can't make an outbound connection, it's usually the return (ACK) packet that gets blocked.
Right, I see. In that case another cooperating machine is needed to find out what I'm after I suppose.
However, most firewalls have a rule that allows packets through that are part of existing connections. That allows you to browse the internet no matter what source port your browser uses.
This isn't about a protection, it's about an ISP stopping/filtering certain uses (ports) via their connections because they don't like it -- too much band width use probably.
By far the best packet sniffer is Wireshark (formally Ethereal) for display of the capture.
From what's said above, a packet sniffer isn't going to be enough right? There needs to be two machines, me sending to another on various ports and it replying on the same port and both machines keeping a log of what's been sent and received, then a comparison made to see what made it and what didn't --- I guess. I wonder if there is such a service, piece of software, whatever, out there?
 Is your computer behind a router in your home? Of course that would include Airport. If so, that is more likely the culprit than your ISP.
Yes an AirPort base station. Say "that is more likely the culprit than your ISP" again after visiting http://www.reviewcentre.com/review210703.html and searching the text for "traffic shaping" a few times! I'm pretty sure I've got the base station set up fine. And I think it's more likely my ISP (the one reviewed at that link) is the culpret. P2P software stops working, well it varies, but it reliably stops during "peak hours". It's the ISP for sure.
I don't know any ISP that blocks all ports.
Well, for incoming, according to the http://www.websecurity.mobi/network-security-audit/178-no-open-ports-my-machine- obviously-rediculous.html (which is me expressing surprise about all incoming ports being blocked) my ISP does. Apparently there is quite a difference between incoming and outgoing. Stops people using their machine as any kind of server (according to that link). One thing I do notice is that doing:
sudo tcpdump -v -x -s 128
on the command line while I'm not doing anything on the internet results in nothing -- complete silence as it were. On the dial up connection I've just left doing that command there was stuff coming in all the time -- who knows what, but the complete silence on my new broadband connection would back up the idea that all incoming ports are blocked. I could be wrong of course.
"nmap" is probably the best portscanner available but as you discovered, OS X has one builtin that you can access through the Network Utility.
Oh right I didn't know they were the same thing. I found that the port scan in NU didn't do anything. I left it for hours. There was an IP address which I left as it had filled it in itself. Maybe I should have changed that? How can I get the right address, or does it usually fill it in correctly itself?
What actually does a port scanner like that one do? Send something out? To what? And how does it know if it got there?
It seems to me to get what I need there needs to be first a suitable piece of software, second another computer running the software ready for my computer to talk to and to communicate multiple times and see what happens. My point is it's not just a piece of software that's needed it's also another cooperating computer elsewhere that needed? Otherwise what's the testing software going to talk to to see if the channel is working?
I'll look into the Port Scan in NU again, see if I can get some actual results from it this time. On a broadband connection I left it for about, I don't know, 3 hours maybe, got nothing.
Cheers,
John

Similar Messages

  • Index Range Scan / Deleted Leaf Blocks

    Hello guys,
    i have such a scenario on a big index / table which i can not reproduce on my test database, so i need to know how oracle handles the index range scan.
    For example:
    TABLE TAB with the following columns NR (number), I_DATE (date), TEXT (VARCHAR2(50))
    INDEX I_TAB on the column I_DATE.
    Now the index has blevel 2 and many leaf blocks. And now my question.
    Query: SQL> SELECT * from TAB WHERE I_DATE < 10.10.2004
    The index had stored some values which are a less than 2003 but these ones are already deleted (so the leaf blocks are gone to the freelist), but it was not reorganized.
    The execution plan is a INDEX RANGE SCAN on the INDEX I_TAB. Does the branch block still have pointers to the deleted leaf blocks which contained only 2003 values before (and so the INDEX RANGE SCAN scans all these blocks too) or are the pointers to these leaf blocks deleted in the branch block?
    Thanks and Regards
    Stefan

    You can verify it by yourself. See following:
    SELECT count(*) FROM index_test;
    ==> 1569408
    SELECT count(*) FROM index_test WHERE id <= 2;
    ==> 12
    -- Delete all except first 12 rows
    DELETE FROM index_test WHERE id > 2;
    -- Query and SQL Trace
    BEGIN
    FOR C IN (SELECT /*+index(index_test index_test_idx) deleted */ * FROM INDEX_TEST WHERE ID < 1000000) LOOP
    NULL;
    END LOOP;
    END;
    SELECT /*+index(index_test index_test_idx) deleted */ *
    FROM
    INDEX_TEST WHERE ID < 1000000
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 1 0.00 0.00 0 3490 0 12
    total 3 0.00 0.01 0 3490 0 12
    ==> 3490 logical reads only for 12 rows and range scan??
    -- Index tree dump
    ALTER SESSION SET EVENTS 'IMMEDIATE TRACE NAME TREEDUMP LEVEL 67513'
    ----- begin tree dump
    branch: 0x1000124 16777508 (0: nrow: 6, level: 2)
    branch: 0x100b1ca 16822730 (-1: nrow: 557, level: 1)
    leaf: 0x1000125 16777509 (-1: nrow: 512 rrow: 12)
    leaf: 0x1000126 16777510 (0: nrow: 484 rrow: 0)
    leaf: 0x1000127 16777511 (1: nrow: 479 rrow: 0)
    leaf: 0x1000128 16777512 (2: nrow: 479 rrow: 0)
    leaf: 0x1000139 16777529 (3: nrow: 479 rrow: 0)
    leaf: 0x100013a 16777530 (4: nrow: 478 rrow: 0)
    branch: 0x100b401 16823297 (0: nrow: 558, level: 1)
    leaf: 0x100b1c9 16822729 (-1: nrow: 449 rrow: 0)
    leaf: 0x100b1cb 16822731 (0: nrow: 449 rrow: 0)
    leaf: 0x100b1cc 16822732 (1: nrow: 449 rrow: 0)
    ==> leaf:3488, branch: 7
    This means that almost all the branch and leaf nodes are read only for 12 keys.
    You can cross check this with the result of "10200" event which traces cr reads. You would find out that the blocks that are read by the query are exactly same as all the index blocks.
    This is what you mean? that the deleted leaf blocks(which contain no actual data) are read by range scan? Through the simple test, the anwer is "yes".

  • SMTP Outgoing Port being rejected by my Z10.

    Just got my Z10 last week and everything with the phone is awesome thus far with the exception that i cannot send any emails out.  I am able to receive but for some strange reason in keeps rejecting my outgoing port of 587.  Spoke to my tech people who host the email and they said the issue has to be coming from Blackberry as the have been receiving other inquires from other clients who use there service and have also recently purchase the z10.  I have seen on some other forums that this is a known issue but have not been able to find a solution to the matter.  Please help

    Welcome to this place! I presume you are running 10.1 OS? The "easy" way out of this dilemma seems to be to send your mail w/o security (and thus on a different port) but you may not be able nor want to do that. For instance, my account requires me to send w/o security as it is an asmtp (not smtp) so it doesn't need it. Someone else here may have a more up-to-date answer as the 10.1 OS seems to have solved this for many.

  • Outgoing Port in Mac Outlook 2011

    I just got a new IMac and am trying to set up my Outlook email.  It is all set up and I can receive messages, but cannot send.  I called my internet carrier and they said I need to make sure the Outgoing Port lists 587.  I cannot find the
    outgoing port area in Outlook 2011.    I looked under the accounts tab as well as advanced tab and don't see where I need to ensure the Port lists this number.

    Hi,
    To set up email in Outlook for Mac 2011, please refer:
    http://office.microsoft.com/en-us/web-apps-help/set-up-email-in-outlook-for-mac-2011-HA102823162.aspx
    http://www.lcn.com/support/articles/how-to-set-up-your-email-account-in-outlook-2011-for-mac
    Since this forum is for general questions and feedback related to OutlookThis forum is for general questions and feedback related to Outlook that is installed on a Windows operating system,
    better to post your questions to the forum for Mac:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011?tab=Threads
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or
    learn from your interaction with us. Thank you for your understanding. 
    Steve Fan
    TechNet Community Support

  • How to replace finder blocks when upgrading old CMP descriptors?

    Hi,
    I have rather old (WL server 6?) descriptors in my hands. The weblogic-cmp-rdbms-jar.xml follows the DTD from http://www.bea.com/servers/wls600/dtd/weblogic-rdbms11-persistence-600.dtd, which includes the finder definitions. I'd like to upgrade the description to follow this schema: http://www.bea.com/ns/weblogic/910/weblogic-rdbms20-persistence.xsd
    Otherwise it's quite understandable, straight-forward work, but that schema no longer includes the finder definitions. My question is, with what and how I can replace the finder blocks in my description? Should I use the weblogic-query - type? Is there any documentation of how to change the finder definitions to that?
    Here's an example of my finder block:
    <finder>               <finder-name>findByTestId</finder-name>
    <finder-param>java.lang.Long</finder-param>
    <finder-query><![CDATA[ (= test_id $0) ]]></finder-query>
    </finder>
    Any help or pointers to documentation would be greatly appreciated...
    Thanks,
    Jani

    Took a tip from your response, got it fixed. Here is what I found:
    I did a command-i on Mail.app. The top left-hand corner icon in the command-i window was the same as what I had used to replace /Applications/Mail.app/Contents/Resources/ApplicationIcon.icns, i.e., it was the desired replaced image, but the image in the "Preview"section of the command-i window was the same as the default image of the Hawk.
    So I copied my version of the /Applications/Mail.app/Contents/Resources/ApplicationIcon.icns to the Desktop of the affected account. I dragged that image onto the small image window in the upper left hand corner of the command-i window, pasting an identical image on top of what was already there. BUT, the image in the "Preview" field of the command-i window changed from the old default image to be the same as the desired replacement /Applications/Mail.app/Contents/Resources/ApplicationIcon.icns image that I had copied to my Desktop.
    Problem solved. Not sure where, in a unixy command line sense, the command-i Preview image lives within a user's account.
    Weird that this was only an issue with user accounts that had been logged into and whose dock visibly displayed the Mail icon before I replaced it. User accounts whose dock never displayed the Mail icon until after I replaced it were no problem. Very strange. But, fixed. Hopefully, this bandaid will survive reboot

  • Where can I find blocks

    Hey everyone,
    I can not find blocks in the Labview 8.5 which i indicated in attachement view. If someone knew where are they in Labview? 
    Please for help
    Marek

    Thank you Christian,
    FFT helped me a lot.
    Have a nice work!
    Marek

  • FRM: 41056 Cannot find block Invalid ID (Solved)

    Hi Gurus,
    I have a package Variable(x) declared in the package spec(Y) of my form.
    In when_button-pressed trigger I wrote code like this.
    Y.X:=NULL;
    I am getting FRM: 41056 Cannot find block Invalid ID.
    Can anyone please help me on this regard?
    Message was edited by:
    Forms

    Gurus,
    thanks for your advice.
    Actually in the package specification (in Forms) there was some other varible whose initial value was based on a block which did not exist in my forms.
    So that caused the problem.
    Sorry for the silly question.
    Thanks,

  • How do I check and modify the outgoing port number

    Charter has changed their settings and I need to set the outgoing port to 465. How do I do that?

    '''[http://kb.mozillazine.org/Menu_differences_in_Windows,_Linux,_and_Mac Tools|Account Settings]'''
    Scroll down the list of accounts. The last one is "Outgoing Server (SMTP)".
    Select this, select your charter SMTP server, click on Edit.

  • Thank you for providing immediate  feedback.   bt that solution did not help me to solve the problem.still am nt able to make outgoing calls. i dont find any problem in recieving calls also right. bt i dont have any problem in recieving calls.

    Thank you for providing immediate  feedback.   bt that solution did not help me to solve the problem.still am nt able to make outgoing calls. i dont find any problem in recieving calls also right. then i dont what is wrong with my iphone.The same sim which i used in iphone4s is working in all other phones.its not the problm of carrier.
    Iphone 4s Black 16gb

    Rather than starting a new thread every time it would be easier to follow you if you stick to the one thread

  • COMCAST Changed Outgoing Port #?

    Does anyone know Comcast outgoing Port Number for Versamail?  It was 25 then 465 now neither work.
    Receiving email is still ok with Port 995.
    Had to make outgoing Port change on home computer's Outlook last year but it still works on 465 now.
    No useful info at Comcast.
    Thanks.
    Post relates to: Treo 680 (Unlocked GSM)

    Hello and welcome to the Palm Forums.
    Try Outgoing Port 25 (still works for me)
    Check Use Secure Connection
    Check Use Authentication
    If you are getting any kind of authentication errors, you might also try logging into Comcast's email web portal, changing your password there, then using the new password.  This happened to me a few months ago, when Comcast migrated to new mail servers and also apparently upgraded the security without telling anyone.  My old password didn't have the new minimum number of characters and the new servers were rejecting it from my wireless logins, even though it worked at home while connected to the network.
    Good luck.
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • Palm Pre email problems since FIOS switched outgoing ports

    My Pre is on Sprint but ever since FIOS sent the email that they were changing outgoing ports, my phone can no longer send emails, but it receives fine.  Just hoping someone has advice/answer...
    TIS

    Really appreciate your assistance! My hosting people are being no help at all. I'm very familiar with "edit server list" - have been there often. It is my hosting person who tells me their logs show that none of the various emails I failed to receive on the first sending - for which I expand the headings and forwarded to him - have ever reach their server and therefore something's going wrong "out there" and they're not responsible. He even just suggested I sign up with gmail for my email service since I've been so much trouble to him. I've had an email address on my own server for ten years now - [email protected] - and don't want to change it!
    I corrected the terrible instructions I got from AppleCare and reversed my incoming and outgoing server settings to audaud.com for regular email and to mail.aracnet.com SMPT for my two personal email addresses I want to send thru Aracnet. (and am paying them to forward them to the audaud.com server). However, when I just tried to reply to an email I received to [email protected] I got a warning I never saw before: (Thought I could attach a screenshot of it but can't seem to) It says "cannot send the message using the server audaud.com." Yet a few minutes later I sent an email to several of the writers for my site and it was sent. The settings were the same!
    My hosting people told me to use Port 26 for sending but they refuse to tell me which port to use for INCOMING mail (using POP). Maybe the port settings are fouling me up, but why do they cause problems only part of the time? I don't use SSL.
    Doesn't everyone receive via their email client "all the emails that get to the server?" Again: any directions on deleting the non-working import of the Eudora Address Book and doing it again properly with Eudora Mailbox cleaner?

  • How to find block free space  and PCTUSED FOR THE TABLE

    HI all,
    Due to performance issues for my database , my management ask me to reset the PCTUSED and PCTFREE values , and my doubt is
    1)How to find the current PCTUSED and PCTFREE values.
    2)How to find block free space and PCTUSED FOR THE TABLE.
    Please help me out regarding this.
    Regards,
    Vamsi.

    1)version is 10.2.0.4
    2)output of query
    tablespace extent_management allocation_type segment_space_management
    SYSTEM     LOCAL     SYSTEM     MANUAL
    UNDOTBS1     LOCAL     SYSTEM     MANUAL
    SYSAUX     LOCAL     SYSTEM     AUTO
    TEMP     LOCAL     UNIFORM     MANUAL
    USERS     LOCAL     SYSTEM     AUTO
    UNDOTBS2     LOCAL     SYSTEM     MANUAL
    INS     LOCAL     SYSTEM     AUTO
    CONFTBS     LOCAL     SYSTEM     AUTO
    REINS     LOCAL     SYSTEM     AUTO
    ANALYST     LOCAL     SYSTEM     AUTO
    BI     LOCAL     SYSTEM     AUTO
    INTRFC     LOCAL     SYSTEM     AUTO
    COGNOS     LOCAL     SYSTEM     AUTO
    TS_INDX     LOCAL     SYSTEM     AUTO
    TS_CHOLAWEB     LOCAL     SYSTEM     AUTO
    TS_DASBOARD     LOCAL     SYSTEM     AUTO

  • Need to change outgoing ports, etc (email)

    I am trying to set up my email via a secure connection (.mil email). I need to know how to change the outgoing port etc that requires authentication...

    In the settings area, in mail, where you are putting together the information for the mail account, after the host name, put in a colon, then the outgoing port number, i.e. SMTP.server.com:xxx, where the 3 x's are the port number. That should work, or if you have already entered the account, you can go to the advanced section and enter the port from there.
    Hope this answers your question.

  • Error -10810 . the application Finder could not be opened

    Hello
    I recently (about 2 days ago) updated my early 2008 Mac Pro through the standard software update and since doing so my computer has begun acting like it wants to crawl into a hole and die.
    There are a number of issues I have noticed. After using the computer for maybe 10-15 minutes I am no longer able to select any applications from my dock and when trying to access the finder it becomes unresponsive. I can then no longer open any programs and if I am lucky I might be able to close whatever curnent program I am using. Sometimes when I try to open a finder window I get the error message -10810 'The application Finder could not be opened'
    for a while I could not empty my trash as well although that now seems to have passed.
    image icons for some programs in my dock have vanished but when i hover over the space where the iconused to be the program seems to still be there.
    I have no idea when my comptuer might freeze. sometimes it's within 10 minutes and other times it is within 1 minute of starting. It's so bad that since updating my mac 2 days ago I have not been able to shutdown the computer properly and have to hold the power button to turn off.
    I have tried doing a disk utility verify and it does not seem to find anything wrong with my hard drive.
    can anyone help. It's a pain lugging this thing to my nearest Mac store as I don't have a car.
    I am using OSX 10.6.8
    thanks

    10.6.8 means you don't have a Recovery Mode and all the more reason to use CCC religiously to have bootable backups.
    CCC can verify the file integrity of every file
    It is harder to verify the integrity of every disk block or sector
    10.6.8 does not run on PowerMac and Mac Pro is not one of those anyway (the POWER part is IBM or MOTO/Freescale G-series of computers, Mac Pro is "Intel Xeon Inside")
    Overdue to a new boot drive. Never apply updates w/o a clone. Updates have gotten better. Lion or ML would provide more security, drops support for PowerPC and Rosetta though if you have to use older programs.
    2008 uses FBDIMMs which even with their ECC can have problems (new FBDIMMs are cheaper, $60 4x2GB, better, run cooler, all of which helps). Garbage in / Garbage Out and same somewhat goes for disk drives too.
    A good choice today is a SSD of 120-250GB for system ($90-170) and 1-2TB drive for media and data ($90-160)
    And don't rule out your graphic card, still using the OEM 2600xt? 8800GT? good time and reason to upgrade.
    Need a newer but not newest? OWC has 2009 4,1 starting at $880 used which are less trouble and handle Mountain Lion better. Yet to see what the requirements will likely be for 10.9 when it comes out later.

  • HT1386 hi - i have recently upgraded to an iphone and find that when i open my MS Outlook on my computer, the emails that were on the iphone get wiped out. Has anyone got a solution to this problem? I'm sure it's very simple when you know the answer! Than

    hi - i have recently upgraded to an iphone and find that when i open my MS Outlook on my computer, the emails that were on the iphone get wiped out. Has anyone got a solution to this problem? I'm sure it's very simple when you know the answer! Thanks.

    Pay no attention to iinami, the amount of replies to people saying their handsets must have been jailbroken everytime iTunes throws out an error is tremendous. (Clearly you don't need to have any real knowledge to get to level 3 on these forums, let's hope apple's geniuses know a lot more than some of their customers.)
    http://support.apple.com/kb/TS3694
    Solution below.
    Error 9
    This error occurs when the device unexpectedly loses its USB connection with iTunes. This can occur if the device is manually disconnected during the restore process. This issue can be resolved by performing USB troubleshooting, using a different USB dock-connector cable, trying another USB port, restoring on another computer, or by eliminating conflicts from third-party security software.

Maybe you are looking for

  • Apex 4.0 comments section not just for comments anymore?

    Had a developer find a new 'feature' in Apex4 yesterday. Is this a bug? or is something else amiss? Here are his comments: Apex Developers, I found a really weird problem and wanted to share it with you. First, some background. At the bottom of nearl

  • Printing twice in the same paper

    Hi, I want to print a report twice in a same paper. Here I4m sending a simple example showing what I want: Name: Jose Perez Name: Jose Perez Address: Corrientes 45 Address: Corrientes 45 Cod. Cant. Precio Cod. Cant. Precio 101 1 10 101 1 10 102 2 15

  • How to Split String

    Hi,     I have a string with fields each of length 40, I need to split it at the mutilples of 40  and put in an internal table , i.e. field1(40), field2(40), field3(40) v_str = (field1                                  field2                          

  • BI with ABAP career

    Hi experts,     I have already learned ABAP and now i want to learn BW/BI.    This combination is better for my career or not ...........   if i put my resume after march ABAP with BW/BI  then can i get more calls........   I am waiting for yours sug

  • Help: there is a way to delete duplicate files in itune?

    every time when im importing music on my itunes is storing the files in the itunes music folder. now i have to backup this folder and the size is more than 80GB. i found that there are many duplications of songs. is there any easy way to delete dupli