Static Static Everywhere

As soon as I turn on my iPod I can hear a feint static 'snap crackle pop' through the earphones.
What I have tried:
-I hear the static through both the low-end earphones that came included with the iPod and my high-end Etymotic ER-4P.
-The static persists whether music is playing or not.
-The static stays at the same volume regardless of how low/high I adjust the iPod's volume.
-When I use the earphones on my other portable player and computer speakers there is no static.
It is feint static but I can definitely hear it, especially with my ear canal style earphones, when all outside noise is shut out. Anyone else have this issue or know how to solve?

There must be something wrong with your ipod if you've got static coming though like that; I had a portable CD player that does that though the headphone jack (but not line out) and my Dell Axim x5 does that, the static made it hard to use them as music players. It was a constant, low static noise, and you could hear in the background as music played. However, with the Axim, that was a common problem with them and the CD player was only really used with the line out jack.
I would take the ipod back and get another one.

Similar Messages

  • UNABLE TO INJECT A STATIC DEFAULT ROUTE FROM PE????

    UNABLE TO INJECT A STATIC DEFAULT ROUTE FROM PE????
    Description:
    I am unable to get a static default route via MPBGP session for a vrf, any other route redistributed the same way is getting through.
    Just the static default route isn't ????
    1>
    SOURCE PE WHERE IS THE ROUTE REDISTRIBUTED:
    pe1#
    router bgp 4755
    bgp router-id 10.10.10.103
    no bgp default ipv4-unicast
    bgp log-neighbor-changes
    neighbor 10.10.10.100 remote-as 4755
    neighbor 10.10.10.100 update-source Loopback0
    address-family vpnv4
    neighbor 10.10.10.100 activate
    neighbor 10.10.10.100 send-community extended
    exit-address-family
    address-family ipv4 vrf B
    redistribute static <<<<<<<<<<<<<< STATIC REDIS
    no auto-summary
    no synchronization
    exit-address-family
    address-family ipv4 vrf A
    redistribute static <<<<<<<<<<<<<< STATIC REDIS
    no auto-summary
    no synchronization
    exit-address-family
    ip classless
    ip route vrf A 0.0.0.0 0.0.0.0 Serial1/0 192.168.1.2 global <<<< STATIC ROUTE POINTING THE GLOBAL CONTEXT INTERFACE
    ip route vrf B 0.0.0.0 0.0.0.0 Serial1/0 192.168.1.2 global <<<< STATIC ROUTE POINTING THE GLOBAL CONTEXT INTERFACE
    DESTINATION PE HERE I CANNOT SEE THE STATIC DEFAULT ROUTE:
    pe3(config-router-af)#do sh ip bgp vpnv4 all
    BGP table version is 11, local router ID is 10.10.10.103
    Status codes: s suppressed, d damped, h history, * valid, > best, i - internal,
    r RIB-failure, S Stale
    Origin codes: i - IGP, e - EGP, ? - incomplete
    Network Next Hop Metric LocPrf Weight Path
    Route Distinguisher: 4755:1 (default for vrf A)
    *>i172.16.1.0/30 10.10.10.101 0 100 0 ?
    *>i172.16.2.0/30 10.10.10.102 0 100 0 ?
    *>i172.16.10.0/24 10.10.10.101 2297856 100 0 ?
    *>i172.16.20.0/24 10.10.10.102 2297856 100 0 ?
    *>i172.16.200.0/24 10.10.10.102 2170112 100 0 ?
    Route Distinguisher: 4755:2 (default for vrf B)
    *>i172.16.1.0/30 10.10.10.101 0 100 0 ?
    *>i172.16.2.0/30 10.10.10.102 0 100 0 ?
    *>i172.16.10.0/24 10.10.10.101 2297856 100 0 ?
    *>i172.16.20.0/24 10.10.10.102 2297856 100 0 ?
    *>i172.16.200.0/24 10.10.10.102 2170112 100 0 ?
    THE STAITC ROUTE IS REDISTRIBUTED TO LOCAL VRF CONTXT ASWELL AS WE CAN SEE:
    pe3(config-router-af)#do sh ip route vrf A
    Routing Table: A
    Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
    D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
    N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
    E1 - OSPF external type 1, E2 - OSPF external type 2
    i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
    ia - IS-IS inter area, * - candidate default, U - per-user static route
    o - ODR, P - periodic downloaded static route
    Gateway of last resort is 192.168.1.2 to network 0.0.0.0
    172.16.0.0/16 is variably subnetted, 5 subnets, 2 masks
    B 172.16.200.0/24 [200/2170112] via 10.10.10.102, 00:00:23
    B 172.16.20.0/24 [200/2297856] via 10.10.10.102, 00:00:23
    B 172.16.10.0/24 [200/2297856] via 10.10.10.101, 00:00:23
    B 172.16.1.0/30 [200/0] via 10.10.10.101, 00:00:23
    B 172.16.2.0/30 [200/0] via 10.10.10.102, 00:00:23
    S* 0.0.0.0/0 [1/0] via 192.168.1.2, Serial1/0
    Hope I am clear in explaining the issue...
    Thanks,
    Dara

    Hehehe :)
    "Unfortunately" that's true !!!!
    This could have been the last thing that I try.
    Getting he techs work, protocols work is fine.
    But if get to make myself understand the logic behind adding this command as well than ... :(
    Thanks a lot,

  • Static methods inside class in jsp can't make it work

    Hello all i can't understand it why i can't declare the method as static method ?
    public class Request{
              Request(){}
              private String paramValue;
              public static String getRequestParam(HttpServletRequest request, String paramName, String defaultValue){
                   paramValue = request.getParameter(paramName);
                   return paramValue != null ? paramValue : defaultValue;
    im geting this error :
    The method getRequestParam cannot be declared static; static methods can only be declared in a static or top level type
    can't i do inner class ?
    or other sulotion for me not to make instences of class's but to use the class static methods?

    Hi, try this:
    public class Request{
              Request(){}
              private static  String paramValue;
              public static String getRequestParam(HttpServletRequest request, String paramName, String defaultValue){
                   paramValue = request.getParameter(paramName);
                   return paramValue != null ? paramValue : defaultValue;
          }it should work. the problem in you code is that you are trying to referance an non-static object with a static one!
    Message was edited by:
    Adelx

  • Can I have a static method?

    I want to know whether we can have static method and static block in Ejb.
    also I want to know the use of these and when these will be invoked by the container

    Technically speaking you can have static methods or static blocks the java compiler or teh ejb deployer will not complain
    However its always a good practice to avoid having static blocks, static methods in EJB
    if you have the urge to initialise or have a startup code in your application when EJB is loaded , you can implement the code in ejbCreate()
    - I dont see any other reason where you might need static block
    if there is any other reason please explain what cirumstances drives you to have static {} static mthd()
    if it is statess session Bean avoid having even non-static member variables
    Reasons for not having non-static member variable in Stateless Session EJB is
    1. stateless EJBs are pooled so the instances are pooled after use.. so there is a chance you might get the same instance with previous assigned values
    Hope the info helps!

  • Static Context

    Alright, this problem is a little difficult to explain. It's for an RPG game. Spell is a working class (builds me a new variable)
    public class Setup
    String dats[] = new String[10];
    public void loadDat()
               /*code for opening data file is unimportant, assume it works and is a string in dats[0]*/
         public Spell getSpell(String a)  //This returns a spell based on ID tag
              //this searches through dats[0] for "a" and builds a Spell that it declares as foundspell; assume it works
              return foundspell;
         //This returns an ArrayList of spells (of one type) that the user can cast
         public ArrayList searchSpell(int type, int req)
              ArrayList spells = new ArrayList();
               /*this uses "getSpell()" to search the dats[0] for certain requires; assume it works as intended as puts all the spells into spells*/
              return spells;
    }loadDat() is executed as the start of the program (in another class).
    So, I need it to be non-static because I need the dats[0] to be accessible always (without running it everytime searchSpell() is called). But when I call searchSpell() from another class (that's not always static, its non-static too) it says: "non-static method cannot be referenced by a static context". If i declare everything as static (the methods above). It says hte same error, but points at the variable dats[0].
    Any thoughts?
    Sorry it's so confusing, if anyone has any idea, please tell, I can probably add more details if you think you need to know something I didn't write in.

    I fixed the problem. All I had to do was declare
    dats[] as static.
    static String dats[] = new String[10];
    Umm,
    Yeah, it is an example of a bad designing an there are several reason for this.
    One of them is that we generally use static keywords for member of classes, not for referece variables to any classes.

  • Initializing array elements on a static initialization block

    Hello,
    I have this class:
    class Foo{
        public static Wing[] flights = new Wing[20]; //initialize with null Wing references
        static { //static initialization block - begin
            for(Wing w : flights){ //for each Wing slot on the array,
                w = new Wing();      //create a Wing object and refer to it
            } // static init block - endThe code above creates a Wing array, and the static init block should create 20 Wing objects on the array slots, but the objects are lost when I try to use it in the main method on the same class Foo:
        public static void main(String[] args){
             System.out.println(flights[3].name); //will throw NullPointerException -> Array elements have not been initialized  
        }How is that possible? The init code for(Wing w : flights) looks like has created copies of the objects, and not just references to the same object. If I change the static init block to the "old-fashioned for loop"
    for (int i=0; i < flights.length; i++){
    flights[i] = new Wing();then it works.
    But I think that the problem is not on the kind of for loop itself, because if I use same static initialization statement, with for (Wing w : flights) on the main method, instead of in a separate init block, the array gets populated with solid objects.
    Any ideas of what I am doing wrong?
    Java version: 5.0

    I think I got it. I am reseting the reference to point to a new Object in the heap instead of the array slot. :-P

  • Static or not

    Hi all,
    Top gun questions, assist us please:
    1) Is there any performance gain between
    a) Declare a static class and access its methods by not creating an object
    b) Declate a class, create an object (instance of the class) type class, and access the class methods via the object
    2)I don't know the benefits of declaring a variable type static
    static int iMyInt = 0; ??
    as opposed to
    int iMyInt = 69;
    Thanks
    Trajano

    Yes, yes, yes. I agree totally with YoGee and tsith: Do NOT use static vs. non-static based on performance considerations. That decision is a design decision, based on whether the variable or method makes more sense to associate with a specific instance of a class or with the class as a whole.
    Examples:
    public static final int FOO_LEVEL = 1;
    public static final int BAR_LEVEL = 2;Since the above are final (never changing) and used as symbolic constants to hide magic numbers, there's no need to create a separate copy for each instance of the object.
    private static int numberInPool;You may use the above when you create a number of instances of a class to be shared in a pool. There may be some static methods that manage the pool and that keep track of how many instances exist. Again, since the quantity is the same across the class, and doesn't represent the state of a specific object, you make it static.
    private String thisPersonsName;Might be used to assign a name to each instance of a Person object--it makes more sense to apply to each individual Person than to the class as a whole.
    Likewise with methods. Those that operate on a specific instance of the class and use or set its state would not be static. Those that operate independently of any particular instance--perhaps creating an instance in a factory method, or managing the pool in the above example--would be static.

  • Show 2 level hierarchy in Managed Navigation menu(Current Navigation) in SharePoint 2013

    We have enabled Managed Navigation in SharePoint 2013 Publishing Site. Now when a user browses a page we want to show the current page siblings are its parent links in the Managed Navigation. Right now its showing only current page siblings in managed navigation.
    Is there any way to show current page parent links in Managed Navigation menu?
    For example I have a term set enabled for managed navigation with following terms:
    Level1
        Level 1.1
            Level 1.1.1
            Level 1.1.2
            Level 1.1.3
    Level 2
        Level 2.1
            Level 2.1.1
    Level 3
        Level 3.1
    Level 4
        Level 4.1 
    Now if a user is on page Level1.1.1 then Current Navigation should show following hierarchy in using Managed Navigation :
    Level 1.1
        Level 1.1.1 -> This node will be shown as selected
        Level 1.1.2
        Level 1.1.3
    Level 2.1
    Level 3.1
    Level 4.1
    Is the above behaviour possible by doing any out of box configuration or using SharePoint designer?
    Thanks,
    Anna Jhaveri

    Ha i was given the same task by my client but they wanted it to be done in client side rather than creating new user control and inheriting from actual control.
    i used Jquery and css to achieve staticlevel 3+  left navigation in sharepoint 2013. first of all let me explain the structure i had created.
    HR department
     -->Level 1
    ---->Level 1.1
    ------>Level 1.1.1
    ------>Level 1.1.2
    -->Level 1.2
     (same as above structure)
    all i did was setting up the staticlevel ="2" and dynamiclevel="3"
    so this would make left navigation with two level  and remaining of its sub sites as flyouts
    Part-1:
    so i used Js to convert all the flyout(dynamic class ) to static $(function(){  
    $("ul.dynamic").removeClass('dynamic').addClass('static');$(".dynamic").removeClass('dynamic').addClass('static');  $(".static").removeClass('dynamic-children'); $("#zz12_RootAspMenu > li:nth-child(n) > ul").removeClass('dynamic-children');
    $("leftnavigation ID"> li:nth-child(n) > ul > li.static > ul").removeClass('dynamic-children');              $("leftnavigation ID" > li:nth-child(n) > ul > li.static > ul > li:nth-child(n) > ul").removeClass('dynamic-children')
    $(".ms-navedit-flyoutArrow").removeClass('dynamic-children').removeClass('ms-navedit-flyoutArrow');
    by using this script all the dynamic classes get convert to static. after getting rid of classes call "dynamic" and "dynamic-children"
    second part :
    now we have convert all the dynamic level to static (just look wise) but functionally  its behaviors is like flyout menu items.so the following js adds the static behavior classes so it just functions like static menu
    $(function()
    var path = window.location.pathname;
    path = path.replace(/\/$/, "");
    path = decodeURIComponent(path)
    $("left nav ID" > li > ul > li.static.selected > ul > li > a").each(function () {
    var href = $(this).attr('href');
    if (path.substring(0, href.length) === href)
    $(this).closest('li').addClass('selected');
    $(this).removeClass('ms-core-listMenu-selected').addClass('selected').addClass('ms-core-listMenu-selected');
    else
    $(this).closest('li').removeClass('selected');
    $(this).removeClass('selected').removeClass('ms-core-listMenu-selected');
    How above code works:
    it  takes the url path of current page and compare it with the all the anchor elements href ,so when it finds the match it would go insert the static level class  like "selected" in the <li> and "ms-core-listMenu-selected" in the <a>
    tag so  they function like static.
    so i have done it for 4 levels so i had to put one more function as shown above to target and read <a> tag href values for 4th level and compare it with current page url.
    i didn't explain in detail in here, i'll be writing up again on this issue on  my blog with screen captures soon.
    Till then you can leave comments and questions.
    Disadvantage :this doest work if you have anything listed other then Subsites(pages,list,libraries) in left navigation.

  • Cisco ASA 5505 Firewall Not Allowing Incoming Traffic

    Hello,
    I am wondering if there is a very friendly cisco guru out there who can help me out.  I am trying to switch out a cisco pix 501 firewall with a cisco ASA 5505 firewall.  I am not very familiar with all of the commands for the firewalls and have always relied on a standard command line script that I use when building a new one.  Unfortunately, my script is not working with the 5505.  Can someone please let me know what I am doing wrong with the following script?  I've masked public IP info with xxx.xxx.xxx and I run it right after restoring the firewall to the factory defaults.  I am able to get out to the internet if I browse directly from one of the servers, but cannot access a web page when trying to browse to it from an outside network.
    access-list 100 permit icmp any any echo-reply
    access-list 100 permit icmp any any time-exceeded 
    access-list 100 permit icmp any any unreachable
    ip address outside xxx.xxx.xxx.94 255.255.255.224
    ip address inside 192.168.1.1 255.255.255.0
    global (outside) 1 xxx.xxx.xxx.106-xxx.xxx.xxx.116
    global (outside) 1 xxx.xxx.xxx.95
    nat (inside) 1 0.0.0.0 0.0.0.0 0 0
    route outside 0 0 xxx.xxx.xxx.93
    access-group 100 in interface outside
    nat (inside) 1 192.168.1.0 255.255.255.0
    nat (inside) 1 192.168.1.0 255.255.255.0 0 0
    outside 0.0.0.0 0.0.0.0 xxx.xxx.xxx.93 1 DHCP static
    static (inside,outside) xxx.xxx.xxx.95 192.168.1.95 netmask 255.255.255.255 0 0
    access-list 100 permit tcp any host xxx.xxx.xxx.95 eq www
    static (inside,outside) xxx.xxx.xxx.96 192.168.1.96 netmask 255.255.255.255 0 0
    access-list 100 permit tcp any host xxx.xxx.xxx.96 eq www

    Hey Craig,
    Based on your commands I think you were using 6.3 version on PIX and now you must be  moving to ASA ver 8.2.x.
    On 8.4 for interface defining use below mentioned example :
    int eth0/0
    ip add x.x.x.x y.y.y.y
    nameif outside
    no shut
    int eth0/1
    ip add x.x.x.x y.y.y.y
    nameif inside
    no shut
    nat (inside) 1 192.168.1.0 255.255.255.0
    global (outside) 1 xxx.xxx.xxx.106-xxx.xxx.xxx.116
    global (outside) 1 xxx.xxx.xxx.95
    access-list 100 permit icmp any any echo-reply
    access-list 100 permit icmp any any time-exceeded 
    access-list 100 permit icmp any any unreachable
    static (inside,outside) xxx.xxx.xxx.95 192.168.1.95 netmask 255.255.255.255 0 0
    access-list 100 permit tcp any host xxx.xxx.xxx.95 eq www
    static (inside,outside) xxx.xxx.xxx.96 192.168.1.96 netmask 255.255.255.255 0 0
    access-list 100 permit tcp any host xxx.xxx.xxx.96 eq www
    route outside 0 0 xxx.xxx.xxx.93
    access-group 100 in interface outside
    You can use two global statements as first statement would be used a dynamic NAT and second as PAT.
    If you're still not able to reach.Paste your entire config and version that you are using on ASA.

  • Cisco ASA Site to Site IPSEC VPN and NAT question

    Hi Folks,
    I have a question regarding both Site to Site IPSEC VPN and NAT. Basically what I want to achieve is to do the following:
    ASA2  is at HQ and ASA1 is a remote site. I have no problem setting up a  static static Site to Site IPSEC VPN between sites. Hosts residing at  10.1.0.0/16 are able to communicate with hosts at 192.168.1.0/24, but  what i want is to setup NAT with IPSEC VPN so that host at 10.1.0.0/16  will communicate with hosts at 192.168.1.0/24 with translated addresses
    Just an example:
    Host N2 (10.1.0.1/16) will communicate with host N1 192.168.1.5 with  destination lets say 10.23.1.5 not 192.168.1.5 (Notice the last octet  should be the same in this case .5)
    The same  translation for the rest of the communication (Host N2 pings host N3  destination ip 10.23.1.6 not 192.168.1.6. again last octet is the same)
    It sounds a bit confusing for me but i have seen this type of setup  before when I worked for managed service provider where we had  connection to our clients (Site to Site Ipsec VPN with NAT, not sure how  it was setup)
    Basically we were communicating  with client hosts over site to site VPN but their real addresses were  hidden and we were using translated address as mentioned above  10.23.1.0/24 instead of (real) 192.168.1.0/24, last octet should be the  same.
    Appreciate if someone can shed some light on it.

    Hi,
    Ok so were going with the older NAT configuration format
    To me it seems you could do the following:
    Configure the ASA1 with Static Policy NAT 
    access-list L2LVPN-POLICYNAT permit ip 192.168.1.0 255.255.255.0 10.1.0.0 255.255.0.0
    static (inside,outside) 10.23.1.0 access-list L2LVPN-POLICYNAT
    Because the above is a Static Policy NAT it means that the translation will only be done when the destination network is 10.1.0.0/16
    If you for example have a basic PAT configuration for inside -> outside traffic, the above NAT configuration and the actual PAT configuration wont interfere with eachother
    On ASA2 side you can normally configure NAT0 / NAT Exemption for the 10.1.0.0/16 network 
    access-list INSIDE-NONAT remark L2LVPN NONAT
    access-list INSIDE-NONAT permit ip 10.1.0.0 255.255.0.0 10.23.1.0 255.255.255.0
    nat (inside) 0 access-list INSIDE-NONAT
    You will have to take into consideration that your access-list defining the L2L-VPN encrypted traffic must reflect the new NAT network 
    ASA1: access-list L2LVPN-ENCRYPTIONDOMAIN permit ip 10.23.1.0 255.255.255.0 10.1.0.0 255.255.0.0
    ASA2: access-list L2LVPN-ENCRYPTIONDOMAIN permit ip 10.1.0.0 255.255.0.0 10.23.1.0 255.255.255.0
    I could test this setup tomorrow at work but let me know if it works out.
    Please rate if it was helpful
    - Jouni

  • Cisco ASA 5505 Rule

    I have an ASA 5505 router. I have configured most of the rules, but have had assistance from online forums and outside consultants
    configuring some rules. There is one in my configuration that I do not understand, and I do not remember entering it myself. The rule is blocking traffic
    when a server on the private side tries to send http traffic to itself. Not sure what the purpose of the rule is or why it is there.
    When I click on rule 35, it highlights both 35 and 36.
    #   Type       Source destination service interface address service DNS Rewrite Max TCP   Ebbronic Limit Max UDP... Randomize Seq #
    35 Dynamic any     <blank>     <blank>  inside      inside   <blank> <blank>     Unlimited Unlimited     Unlimited <checked>
    36 <blank> <blank> <blank>   <blank>  outside    outside <blank> <blank>     Unlimited Unlimited     Unlimited
    I am hesitant to delete the rule until I know the purpose.
    I am not sure but the rule below may be what is generatig it (I am not familiar withg command line commands):
    access-group outside_access_in in interface outside
    route outside 0.0.0.0 0.0.0.0 209.34.249.193 1
    Can someone tell me whay this is for, or what it is doing?                  

    I used Packet Tracer (a GUI tool) to determine which NAT rule was blocking the traffic I am trying to allow.  It was rule 35 & 36 as shown in my original post.  I attempted to correlate the gui rule to the cli.  I don't know if i picked the correct cli rule or not.  That is why I showed both of them.
    Since rule 35 is dynamic, I tried:
    Result of the command: "show run dynamic"
    crypto dynamic-map outside_dyn_map 20 set pfs group1
    crypto dynamic-map outside_dyn_map 20 set transform-set ESP-3DES-SHA
    This rule is part of the VPN setup I think, which would make sense because I had a consultant set it up for me.
    Result of the command: "show run global"
    global (inside) 1 interface
    global (outside) 1 interface
    global (outside) 199 xxx.xxx.249.200
    nat (inside) 0 access-list inside_nat0_outbound
    nat (inside) 199 access-list Mail
    nat (inside) 1 0.0.0.0 0.0.0.0
    Result of the command: "show run static"
    static (inside,outside) tcp xxx.xxx.235.13 ftp 192.168.1.20 ftp netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.249.200 smtp 192.168.1.119 smtp netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.249.196 www 192.168.1.100 www netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.249.197 www 192.168.1.101 www netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.249.198 www 192.168.1.102 www netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.249.199 www 192.168.1.103 www netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.1 https 192.168.1.109 https netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.2 https 192.168.1.110 https netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.3 https 192.168.1.111 https netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.4 https 192.168.1.112 https netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.5 https 192.168.1.113 https netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.6 https 192.168.1.114 https netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.7 https 192.168.1.115 https netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.8 https 192.168.1.116 https netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.9 https 192.168.1.117 https netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.10 https 192.168.1.118 https netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.11 https 192.168.1.119 https netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.12 https 192.168.1.120 https netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.13 https 192.168.1.121 https netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.13 www 192.168.1.121 www netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.14 ftp 192.168.1.122 ftp netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.14 ftp-data 192.168.1.122 ftp-data netmask 255.255.255.255
    static (inside,inside) tcp xxx.xxx.235.6 1443 192.168.1.40 1443 netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.235.5 1443 192.168.1.40 1443 netmask 255.255.255.255
    static (inside,outside) tcp xxx.xxx.249.197 1080 access-list Nat1
    static (inside,outside) tcp xxx.xxx.249.198 1080 access-list Nat2
    static (inside,outside) tcp xxx.xxx.249.198 2080 access-list Nat4
    static (inside,outside) tcp xxx.xxx.249.197 2080 access-list Nat3
    static (inside,outside) tcp xxx.xxx.249.199 1080 access-list Nat5
    static (inside,outside) tcp xxx.xxx.249.199 2080 access-list Nat6
    static (outside,inside) 192.168.1.50 xxx.xxx.249.200 netmask 255.255.255.255
    static (inside,inside) xxx.xxx.249.197 192.168.1.50 netmask 255.255.255.255
    nat (inside) 0 access-list inside_nat0_outbound
    nat (inside) 199 access-list Mail
    nat (inside) 1 0.0.0.0 0.0.0.0
    I included other cli but changes the ip addresses.
    I am trying to allow my server behind the firewall to send http traffic to itself.  Currently blocked by rule 35&36 in the gui.

  • EJB 3.0 integration in FDS, with Annotations

    We have been working with the EJB 3.0 implementations and see
    a lot of synergy between the new approach to enterprise Java with
    this new specification, and would love to see FDS add an adaptor to
    support it.
    Our new entity/session beans have annotated relationships,
    primary key information, and security regarding access to the
    object and it's methods are specified already in the Java source.
    Centralized management of this information where it is closest to
    the source is highly productive.
    With so much of the FDS configuration still sitting in static
    XML files, we are required to maintain a redundant copy of all of
    the annotation information separately. This adds pure overhead to
    the development process, and it is challenging to keep the two in
    sync when applications are enhanced.
    We would like to see the FDS framework more tightly
    integrated with the rest of the J2EE world, and through Java
    introspection and annotations learn about the applications
    available on the server side without custom config files.
    The fill, assembler, and synchronization methods could simply
    be a standard class interface to be implemented with methods to
    override, or even annotated with flex annotations. Destinations
    would no longer need to be hand-configured. The meta-data about row
    identity would be read from the entity beans themselves. If a fill
    method has parameters, read them from the function prototypes.
    (The existing Flash remoting product seems to have the above
    features. We enjoy the integration of Flash Remoting, and the
    development workflow associated. The Flash client only needs the
    JNDI name of the services, and once authenticated, access to any
    function is possible without further action. FDS goes above and
    beyond to provide several very interesting features, but is not
    quite as intuitive when it comes to J2EE services.)
    To tie this meta-information on the server back to the IDE
    for visual design, using real server-side object properties and
    methods, and session bean functions would close the loop on the
    development cycle. This could also be accomplished within Eclipse
    since the server side Java classes could easily be in the
    classpath. The IDE could give the developer a hand in choosing and
    referencing valid return object properties. An actionscript object
    could even be generated if necessary from the entity bean's
    properties...
    Are any of these ideas in the works, or are there any
    exisiting methods for accomplishing these efficiencies?

    caused by: com.sun.enterprise.InjectionException: Illegal use of static field private static car.session.CarSessionLocal jsfpack.BackingBean.carSession on class that only supports instance-based injectionat com.sun.enterprise.util.InjectionManagerImpl._inject(InjectionManagerImpl.java:292)
    ... 52 more
    StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception
    com.sun.enterprise.InjectionException: Illegal use of static field private static car.session.CarSessionLocal jsfpack.BackingBean.carSession on class that only supports instance-based injectionInjected fields in server-side components should never be marked static. static is only used for
    the main class of Application Client components.

  • EJB 3.0 integration with JSF

    Hi,
    I have some problem in integrating EJB into JSF.
    I have Entity class Car.java
    And Session CarSessionBean.java which implements @Local and @Remote interfaces.
    Than i have BackingBean.java which i am trying to integrate into JSF.
    When I am running the program i got following error:
    JSF1001: Managedbean backBean could not be created.
    executePhase(RENDER_RESPONSE 6,com.sun.faces.context.FacesContextImpl@234ab7) threw exception
    javax.faces.FacesException: javax.faces.FacesException: com.sun.enterprise.InjectionException: Exception attempting to inject Resolved Ejb-Ref jsfpack.BackingBean/carSession@jndi:  - > CarSessionBean into class jsfpack.BackingBean
            at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:521)
            at com.sun.faces.el.ManagedBeanELResolver.getValue(ManagedBeanELResolver.java:82)
            at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)
            at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:62)
            at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:65)
            at com.sun.el.parser.AstValue.getValue(AstValue.java:106)
            at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
            at javax.faces.component.UIData.getValue(UIData.java:582)
            at javax.faces.component.UIData.getDataModel(UIData.java:1061)
            at javax.faces.component.UIData.setRowIndex(UIData.java:417)
            at com.sun.faces.renderkit.html_basic.TableRenderer.encodeBegin(TableRenderer.java:85)
            at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:810)
            at javax.faces.component.UIData.encodeBegin(UIData.java:878)
            at javax.faces.component.UIComponent.encodeAll(UIComponent.java:881)
            at javax.faces.render.Renderer.encodeChildren(Renderer.java:137)
            at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
            at javax.faces.component.UIComponent.encodeAll(UIComponent.java:883)
            at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
            at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:271)
            at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:182)
            at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:133)
            at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:244)
            at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:140)
            at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
            at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:278)
            at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
            at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:240)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:179)
            at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
            at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
            at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
            at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137)
            at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
            at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:239)
            at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:667)
            at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:574)
            at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:844)
            at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:287)
            at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:212)
            at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
            at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    Caused by: javax.faces.FacesException: com.sun.enterprise.InjectionException: Exception attempting to inject Resolved Ejb-Ref jsfpack.BackingBean/carSession@jndi:  - > CarSessionBean into class jsfpack.BackingBean
            at com.sun.faces.config.ManagedBeanFactoryImpl.newInstance(ManagedBeanFactoryImpl.java:325)
            at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:510)
            ... 47 more
    Caused by: com.sun.enterprise.InjectionException: Exception attempting to inject Resolved Ejb-Ref jsfpack.BackingBean/carSession@jndi:  - > CarSessionBean into class jsfpack.BackingBean
            at com.sun.enterprise.util.InjectionManagerImpl._inject(InjectionManagerImpl.java:373)
            at com.sun.enterprise.util.InjectionManagerImpl.inject(InjectionManagerImpl.java:193)
            at com.sun.enterprise.util.InjectionManagerImpl.injectInstance(InjectionManagerImpl.java:87)
            at com.sun.faces.vendor.GlassFishInjectionProvider.inject(GlassFishInjectionProvider.java:65)
            at com.sun.faces.config.ManagedBeanFactoryImpl.newInstance(ManagedBeanFactoryImpl.java:312)
            ... 48 more
    Caused by: com.sun.enterprise.InjectionException: Illegal use of static field private static car.session.CarSessionLocal jsfpack.BackingBean.carSession on class that only supports instance-based injection
            at com.sun.enterprise.util.InjectionManagerImpl._inject(InjectionManagerImpl.java:292)
            ... 52 more
    StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception
    com.sun.enterprise.InjectionException: Illegal use of static field private static car.session.CarSessionLocal jsfpack.BackingBean.carSession on class that only supports instance-based injection
            at com.sun.enterprise.util.InjectionManagerImpl._inject(InjectionManagerImpl.java:292)
            at com.sun.enterprise.util.InjectionManagerImpl.inject(InjectionManagerImpl.java:193)
            at com.sun.enterprise.util.InjectionManagerImpl.injectInstance(InjectionManagerImpl.java:87)
            at com.sun.faces.vendor.GlassFishInjectionProvider.inject(GlassFishInjectionProvider.java:65)
            at com.sun.faces.config.ManagedBeanFactoryImpl.newInstance(ManagedBeanFactoryImpl.java:312)
            at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:510)
            at com.sun.faces.el.ManagedBeanELResolver.getValue(ManagedBeanELResolver.java:82)
            at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)
            at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:62)
            at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:65)
            at com.sun.el.parser.AstValue.getValue(AstValue.java:106)
            at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
            at javax.faces.component.UIData.getValue(UIData.java:582)
            at javax.faces.component.UIData.getDataModel(UIData.java:1061)
            at javax.faces.component.UIData.setRowIndex(UIData.java:417)
            at com.sun.faces.renderkit.html_basic.TableRenderer.encodeBegin(TableRenderer.java:85)
            at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:810)
            at javax.faces.component.UIData.encodeBegin(UIData.java:878)
            at javax.faces.component.UIComponent.encodeAll(UIComponent.java:881)
            at javax.faces.render.Renderer.encodeChildren(Renderer.java:137)
            at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
            at javax.faces.component.UIComponent.encodeAll(UIComponent.java:883)
            at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
            at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:271)
            at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:182)
            at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:133)
            at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:244)
            at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:140)
            at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
            at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:278)
            at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
            at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:240)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:179)
            at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
            at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
            at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
            at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137)
            at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
            at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:239)
            at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:667)
            at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:574)
            at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:844)
            at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:287)
            at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:212)
            at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
            at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)This is my BackingBean.java source:
    package jsfpack;
    import car.session.CarSessionLocal;
    import java.util.List;
    import javax.ejb.EJB;
    import javax.naming.InitialContext;
    public class BackingBean {
        @EJB
        private static CarSessionLocal carSession;
        private List all;
           /** Creates a new instance of BackingBean */
        public BackingBean() {
           public List getAll() {
            if( all == null)
                all=carSession.queryCarFindAll();
            return all;     
        public void setAll(List all) {
            this.all = all;
        }Where i am doing wrong?
    Thank you.

    caused by: com.sun.enterprise.InjectionException: Illegal use of static field private static car.session.CarSessionLocal jsfpack.BackingBean.carSession on class that only supports instance-based injectionat com.sun.enterprise.util.InjectionManagerImpl._inject(InjectionManagerImpl.java:292)
    ... 52 more
    StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception
    com.sun.enterprise.InjectionException: Illegal use of static field private static car.session.CarSessionLocal jsfpack.BackingBean.carSession on class that only supports instance-based injectionInjected fields in server-side components should never be marked static. static is only used for
    the main class of Application Client components.

  • Unable to connect to HP Officejet Pro 8100 wireless printer: Unsuccesful Network Connection

    Unable to set up the wireless on my new printer.
    Error message:  Unsuccessful Network Connection.
    The printer was unable to install over the network.
    I have printed the diagnostic report (HP Network Configuaration Page).  There are no error comments on this page. 
    Under Wireless title, my correct WIFI isted under Network Name; however the status says disconnected.
    Under Diagnostic Results title; Connectivty - Connected - PASS
    Wireless - ON
    Wireless Working  - PASS
    Signal - Very Good
    I connected the USB cable as instructed in the wizard.  Does it have something to do with when to disconnect this cable?

    Hi,
    You dont have to fiddle around with the wireless channel and calling your isp and all, i install these every day to my customers, when i get any issues i follow these three methods, one of them works
    HP Printer Wireless Setup
    HP Automatic Wireless Configuration or (HP Auto Wireless Connect)  HP printer Wireless Setup, includes Auto Wireless Connect technology that allows connecting the printer to the wireless network automatically without having to connect any cables or enter wireless network settings such as wireless password or id. All new HP printers will have this capability during the software installation process. In some cases computers or the network configurations are compatible with HP Auto Wireless Connect. In these cases, an alternate wireless setup method will be offered. To be compatible with HP Auto Wireless Connect, the following conditions must be met: Your computer uses Windows Vista, Windows 7, Windows 8, Mac OS X 10.5 +. Your computer uses a wireless connection to your network and the operating system is in control of the wireless adapter so that the HP Software can retrieve the computer’s current network settings. Your computer is connected to your 802.11b/g/n wireless router over a 2.4 GHz connection.
    NOTE: HP Printers are currently not compatible with 802.11n 5.0 GHz networks.Your computer does not use a static static IP address. Your printer is in HP Auto Wireless Connect mode. The printer will be in this mode for one hour after it is first powered on during installation before it is connected to a network. If your printer has been powered on for more than one hour and the software has not yet tried to connect the printer to your wireless network, you can reset this mode by using the Restore Network Defaults option from the printer control panel. Refer to your printer documentation for how to perform Restore Network Defaults. Other environmental and technical factors may also affect whether HP Auto Wireless Connect is offered.
    If HP Auto Wireless Connect is offered during the installation of your printer, it is the recommended setup method. Part of the setup process requires your computer to be temporarily disconnected from your wireless network. During this time you will not have Internet access. Be sure to save any online work and/or downloads before continuing with this setup method. To use this option, install the software for your printer and follow the onscreen instructions. When prompted, select the “Network (Ethernet/Wireless)” connection type and then choose “Yes, send my wireless settings to the printer (recommended)”. That’s it! The HP software will do the rest. If HP Auto Wireless Connect is not offered during the software installation or if it is not successful, you will be guided to use another wireless setup method.WPS (Wi-Fi Protected Setup)WPS (Wi-Fi Protected Setup) – WPS has two modes to connect devices together over a wireless connection. One is called “pushbutton” and the other is called “PIN”. Pushbutton is by far the easiest method. We will describe how to connect using the WPS pushbutton method, but not the PIN method.
    For instructions on starting WPS on your printer consult your printer’s manual. However there are some conditions that need to be met in order to use WPS pushbutton mode:
    Both your printer and wireless router must support WPS pushbutton mode. Consult your printer and wireless router manuals. The wireless router must have a physical WPS pushbutton available. Your network must use WPA or WPA2 security. Most WPS wireless routers will not connect using the WPS method if WEP or no security is used.  Most WPS wireless routers will not connect using the WPS method if you are using the manufacturer’s default for the network name and no security.
    To connect your wireless printer to your wireless router using WPS. Start the WPS pushbutton mode on your printer. For instructions on starting WPS on your printer, consult your printer’s manual. Within 2 minutes, press the WPS button on your router.HP Printer Wireless Setup – The Wireless Setup WizardThe Wireless Setup Wizard, which you run from the printer’s control panel. Make sure you know your network name and your security password (WEP or WPA). On the printer’s control panel, press the Setup button and then select the Network menu. The Wireless Setup Wizard displays a list of wireless networks in the area. Note:  The Setup button may appear as a wrench icon. There are differences between product models. Select your wireless network’s name from the list. If you don’t see your wireless network listed, you can enter your network name manually by scrolling to the bottom of the list. If you enter the name manually it must be exact, including upper and lower case characters. Enter your WEP key or WPA passphrase. You must enter the key or passphrase exactly, including upper and lower case characters. Your printer should connect to your wireless network. If it does not connect, you are given the opportunity to print a Wireless Network Test report that will help you find out what may be wrong.USB Setup of WirelessUSB setup of wireless – Some HP wireless printers can use this wireless setup method during the printer software installation. During this process you’ll temporarily connect a USB cable between the computer and the printer. It’s important that you connect and disconnect the cable only when prompted by the software, which will guide you through connecting and configuring your printer’s wireless connection. In some cases the software may automatically find your wireless settings for you.To connect your wireless printer to your wireless router using USB setup of wireless, proceed to Installing Printer Software.
    Source:- http://hpprinter.techport45.com/hp-printer-wireless-setup/

  • SMTP in problem

    I'm testing inbound connections using a port listener software.
    all ports are working, only port 25 fail
    this is what I use to route inbound connections:
    access-list outside_access_in extended permit tcp any host 63.x.y.26 eq 951
    access-list outside_access_in extended permit tcp any host 63.x.y.27 eq 952
    static (inside,outside) tcp 63.x.y.26 951 192.168.200.2 951 netmask 255.255.255.255
    static (inside,outside) tcp 63.x.y.27 952 192.168.200.2 952 netmask 255.255.255.255
    using the exact command with port 25 replacing port 951\952 fail.
    any reason?
    is there a different way of testing SMTP inbound traffic (test environment - no SMTP server)?
    which log records will show me what exactly happen to those incoming packets that never show on the port listener?

    it is NOT working
    first, I had a problem adding these static commands - the first was good (after deleting the previous statics) but the second produced this error:
    ERROR: duplicate of existing static
    TCP inside:192.168.200.6/25 to outside:63.x.y.26/25 netmask 255.255.255.255
    the current config include this:
    config;
    ASA# sh run | inc static
    static (inside,outside) tcp 63.x.y.28 953 192.168.200.2 953 netmask 255.255.255.255
    static (inside,outside) tcp interface smtp 192.168.200.6 smtp netmask 255.255.255.255
    ASA# sh access-list
    access-list cached ACL log flows: total 0, denied 0 (deny-flow-max 4096)
    alert-interval 300
    access-list outside_access_in; 7 elements
    access-list outside_access_in line 1 extended permit icmp any interface outside (hitcnt=0) 0xbdd73ad6
    access-list outside_access_in line 2 extended permit tcp any host 63.x.y.26 eq 951 (hitcnt=0) 0x3ce31844
    access-list outside_access_in line 3 extended permit tcp any host 63.x.y.27 eq 952 (hitcnt=0) 0x47759ff9
    access-list outside_access_in line 4 extended permit tcp any host 63.x.y.28 eq 953 (hitcnt=0) 0x34502744
    access-list outside_access_in line 5 extended permit tcp any host 63.x.y.29 eq smtp (hitcnt=0) 0x9c033920
    access-list outside_access_in line 6 extended permit tcp any host 63.x.y.26 eq smtp (hitcnt=0) 0xc254efef
    access-list outside_access_in line 7 extended permit tcp any host 63.x.y.27 eq smtp (hitcnt=0) 0xc9867e83
    reload, retry port 25 via 63.x.y.26, this is the log:
    log file:
    6|Aug 07 2008 08:46:18|302020: Built inbound ICMP connection for faddr 10.a.b.c/0 gaddr 63.x.y.26/0 laddr 63.x.y.26/0
    6|Aug 07 2008 08:46:18|302021: Teardown ICMP connection for faddr 10.a.b.c/0 gaddr 63.x.y.26/0 laddr 63.x.y.26/0
    6|Aug 07 2008 08:46:18|302020: Built inbound ICMP connection for faddr 10.a.b.c/0 gaddr 63.x.y.26/0 laddr 63.x.y.26/0
    6|Aug 07 2008 08:46:18|302021: Teardown ICMP connection for faddr 10.a.b.c/0 gaddr 63.x.y.26/0 laddr 63.x.y.26/0
    6|Aug 07 2008 08:46:18|302020: Built inbound ICMP connection for faddr 10.a.b.c/0 gaddr 63.x.y.26/0 laddr 63.x.y.26/0
    6|Aug 07 2008 08:46:18|302021: Teardown ICMP connection for faddr 10.a.b.c/0 gaddr 63.x.y.26/0 laddr 63.x.y.26/0
    6|Aug 07 2008 08:47:18|302020: Built inbound ICMP connection for faddr 10.a.b.c/256 gaddr 63.x.y.26/0 laddr 63.x.y.26/0
    6|Aug 07 2008 08:47:18|302021: Teardown ICMP connection for faddr 10.a.b.c/256 gaddr 63.x.y.26/0 laddr 63.x.y.26/0
    6|Aug 07 2008 08:47:18|302020: Built inbound ICMP connection for faddr 10.a.b.c/256 gaddr 63.x.y.26/0 laddr 63.x.y.26/0
    6|Aug 07 2008 08:47:18|302021: Teardown ICMP connection for faddr 10.a.b.c/256 gaddr 63.x.y.26/0 laddr 63.x.y.26/0
    6|Aug 07 2008 08:47:18|302020: Built inbound ICMP connection for faddr 10.a.b.c/256 gaddr 63.x.y.26/0 laddr 63.x.y.26/0
    6|Aug 07 2008 08:47:18|302021: Teardown ICMP connection for faddr 10.a.b.c/256 gaddr 63.x.y.26/0 laddr 63.x.y.26/0
    10.a.b.c => source IP (PC that connect to test enc)
    192.168.200.6 => destination IP (PC that listen to port 25)

Maybe you are looking for

  • Java.awt.Image getWidth() and getHeight() not working!

    Right- this is want I want to do. I have a background image which is added as a background image to a third party API class which extends Java.awt.Container. Such container is then added to the Content Pane of MyClass (which extends JFrame) I want to

  • Unable to clear the recently open files list

    Currently, in order to clear the opened files list, the user has to go into the Windows registry.  This by itself can be bad if the user is not familiar with the registry; could mess up the registry if not very careful.  There appears to be no plug-i

  • Ipod and itunes(especially itunes)will freeze while syncing

    i pod and itunes will freeze while syncing, all apps are there, but no music?Itunes says ipod has latest updates, I reinstalled  Itunes, powered off/ sleep  a couple times still not syncing any help? Thanks

  • Dunning notices before due date

    Hi experts, Is there any option to get the items not due in dunning letters, as per my understanding dunning shows the due items only. but my requirement is to get the items due and items not due in the same dunning letter. my intention is for items

  • Exit code 143

    I have an app that crashes every so often. It returns the number 143, as if the app called System.exit(143); but the code for the app never does this, and may be done at the java classes level of the java binary level. Does anyone have any idea what