RV180W - Access Rules Don't Work

Hi,
We have a RV180W and the Access Rules will not work.  I'm trying to block HTTP and HTTPS services for a specific workstation on our LAN, but the access rules don't seem to be working.  I've also tried blocking different services as well as ANY service, but it's not working.  I've tried rebooting the router after adjusting settings; I've tried adjusting services from the Port Forwarding menu first; and a couple weeks ago, I upgraded the firmware to version 1.0.2.6 and repeated all the previous steps.  Nothing seems to be working.  So far the only solution I could come up with is to block the workstation's MAC address altogether, but I don't want that because I still need it to hit the internet for other services.
Thank you,
Ryan

These are the Access Rules I've tried (firmware v1.0.2.6):
Outbound:
Inbound along with the auto added Port Forwarding setting:

Similar Messages

  • Inactive firewall access rule can still work?

    Hi all,
    I have a asa firewall which has a inactive access rule whose enabled checkbox is not checked. However it seem that this access rule can still work.
    Hence i would like to know what is the difference in having the access rule's enabled checkbox check or uncheck. Pls advise, thks in advance.

    I'm assuming by rule you mean an inactive access-list entry?  If so, did you try clearing the translations (clear xlate) after disabling it?
    Try running packet-tracer to determine if that is the rule that the traffic is hitting.

  • Exchange 2013: Inbox rules don't work on Journal Mailbox

    Hello,
    I've Exchange 2013 server with 2 databases:
    * First database has all user mailboxes & is journaled to second database
    * Second database has only 1 mailbox: Journal which collects all messages send / received  from / to first database.
    I made Inbox Rules on Journal Mailbox  to delete unnecessary messages e.g. :
    * HealthMailbox messages with Subject: Client submission probe
    * [email protected] messages with Subject: Inbound proxy probe.
    I noticed that these rules don't work. Why ?
    best regards Janusz Such

    Hi,
    How do you create these Inbox Rules on journal Mailbox? Please share the detailed rule content here and we can check whether the rule was created correctly or not.
    Instead of journaling all mailboxes residing on a mailbox database, I suggest we can configure journal rules to match your organization's needs by journaling individual recipients or members of distribution groups. For more information about
    journal rules, please refer to:
    https://technet.microsoft.com/en-us/library/jj651670%28v=exchg.150%29.aspx?f=255&MSPPError=-2147217396
    Regards,
    Winnie Liang
    TechNet Community Support

  • Cisco RV180W Access Rules

    Good Day,
    I have been using Access Rules Block by Schedule successfully on my RV180.  I block all outbound traffic to a single IP address with two rules, 1) from 21:30 to 23:59 Every Day and 2) from 00:00 to 07:30 Every Day.  This works fine.
    However I am wanting to refine this to include days of the week.  I have the following:
    1) from 21:30 to 23:59 Sunday through Thursday;
    2) from 00:00 to 07:30 Every Day;
    3) from 22:30 to 23:59 Friday through Saturday.
    They are in this order in the Access Rules page but as they are all unique I cannot see why the order would affect it.
    The default Outbound Policy is Allow.  I have not rebooted the router and maybe this is what I need to do but the help does not say this needs to be done.
    Rule 3 is not working and access is allowed well past 22:30.  As I have only implemented this on Friday I have not yet tested if the other rules are working or not.  I know I could change the time to test it and will do if necessary but thought I would ask the forum first if anyone has come across this issue.
    All the best,
    Karl

    Hello,
    I have found out one reason for the access rules not working that was the TCP session timeout period.  That is to say that the current TCP session would continue until the TCP timeout period expired even if it was after the cut off time had been passed.  But there are other issues where the web interface indicated a change was made but it hadn't updated the router configuration, i.e. wireless disabled but it continued to run.  The web interface is prone to freezing.  The spec sheet says it supports port mirror but it doesn't.  I am thoroughly disappointed in the unit.  I am in the process of asking for a refund as I need a router that does what it is advertised to do.
    This is not a Cisco product that they (Cisco) should be proud of.
    Regards,
    Karl Wraith

  • Interface names get swapped, but udev rules don't work

    I'm using the (apparently nightmarish) broadcom_wl module.
    This:
    https://wiki.archlinux.org/index.php/Br … every_time
    and this:
    https://wiki.archlinux.org/index.php/Co … es_varying
    don't work.  the 10-network.rules file I create is just completely ignored.
    Any ideas?
    Arch is my distro of choice for my desktop, but it is turning out to be an enormous PITA on my laptop.

    hmmm,
    NAME
               The name, a network interface should be renamed to. Or as a
               temporary workaraound, the name a device node should be named.
               Usually the kernel provides the defined node name, or even creates
               and removes the node before udev even receives any event. Changing
               the node name from the kernel's default creates inconsistencies and
               is not supported. If the kernel and NAME specify different names,
               an error will be logged. Udev is only expected to handle device
               node permissions and to create additional symlinks, not to change
               kernel-provided device node names. Instead of renaming a device
               node, SYMLINK should be used. Symlink names must never conflict
               with device node names, it will result in unpredictable behavior.
    try creating symlinks instead.

  • Mail Rules don't work in Mavericks

    It seems with the update to 10.9 Mavericks Mail rules no longer work. My email address was harvested by spamers and I have been using rules to weed throught the 100's of emails that I receive each day.
    Russian Brides, Vigra, Learn a new language get moved into the trash when delievered. Now nothing happens.
    I just tried to write a new rule and when I clicked the Prefs pannel I got the spinning cursor. After waiting for some time I did a force quit only to find that Mail was not responding.
    Anyone have any ideas? I did not see any major changes with Mail and Mavericks so I'm not sure why it's been effected.
    MD

    You might condider using an Applescript with Mail Rules.
    Here's one that I use (Use whitelist to not move to spam):
    (Just edit to your junk or whitelist)
    Note:  The Applescripit must be saved to: ~/Library/Application Scripts/com.apple.mail/
    The rule:
    The AppleScript:
    using terms from application "Mail"
              on perform mail action with messages theMessages
                        tell application "Mail"
                                  repeat with theMessage in theMessages
                                            set theSender to (sender of theMessage)
                                            set theReplyto to (reply to of theMessage)
                                            set theSubject to (subject of theMessage)
                                            set theHeader to (all headers of theMessage)
                                            set theContent to (source of theMessage as string)
                                            set theAccount to (account of mailbox of theMessage)
                                            if my blacklist(theSender, theReplyto, theSubject, theHeader, theContent) ¬
                                                      and not my whitelist(theSender, theHeader) then
                                                      my moveToJunkFolder(theMessage, theAccount)
                                            end if
                                  end repeat
                        end tell
              end perform mail action with messages
    end using terms from
    on blacklist(f, r, s, h, c)
              if h contains "X-YahooFilteredBulk" or ¬
                        h contains "Received-SPF: fail" or ¬
                        h contains "Received-SPF: softfail" or ¬
                        h contains "Received-SPF: error" or ¬
                        h contains "Received-SPF: permerror" or ¬
                        h contains "Received-SPF: temperror" or ¬
                        h contains "streamsendbouncer@" or ¬
                        s contains "[Bulk]" or ¬
                        f contains "Vigra.candianmeds.com" or ¬
                        f contains "[email protected]" or ¬
                        f contains ".cz" or ¬
                        r contains ".ma" then
                        return true
         end if
    end blacklist
    on whitelist(f, h)
              if f contains "aicpa" or ¬
              f contains "eWeek.com" or ¬
                        h contains "from macbook-air.local" then
                        return true
              else
                        return false
              end if
    end whitelist
    on moveToJunkFolder(m, a)
              tell application "Mail"
                        try
                                  set the read status of m to true
                                  set the junk mail status of m to true
                                  set theAccount to (account of mailbox of m)
                                  set mailbox of m to (mailbox "Junk" of a) --  Move to "Junk"
                        end try
              end tell
    end moveToJunkFolder

  • Udev rules don't work

    I am on my laptop, where I am trying to write some udev rules.
    Firstly, as a test I tried to make a symlink when connecting my ext hd.
    $ udevadm info /dev/sdb
    E: ID_PART_TABLE_UUID=ea04843c-526e-45bf-9d45-beba1b180285
    $ cat /etc/udev/rules.d/61-rules.rules
    ENV{ID_PART_TABLE}=="ea04843c-526e-45bf-9d45-beba1b180285" NAME="lilalum"
    And well, nothing happens (there is no lilalum in /dev) when I plug in my ext hd.
    Secondly, my low bat rule doesn't work.
    $ cat /etc/udev/rules.d/99-lowbat.rules
    SUBSYSTEM=="power_supply", ATTR{status}=="Discharging", ATTR{capacity}=="10", RUN+="/usr/bin/systemctl suspend"
    SUBSYSTEM=="power_supply", ATTR{status}=="Discharging", ATTR{capacity}=="9", RUN+="/usr/bin/systemctl suspend"
    SUBSYSTEM=="power_supply", ATTR{status}=="Discharging", ATTR{capacity}=="8", RUN+="/usr/bin/systemctl suspend"
    It just doesn't do anything when the battery gets that low, and no the battery did not skip both 10, 9 and 8 percent.
    Last edited by Ploppz (2014-05-03 12:41:02)

    Ah... thanks, it works now!
    One more small issue... I tried writing a test to detect when the charger of my laptop gets plugged in or out, I put it in 61-rules.rules
    SUBSYSTEM=="power_supply", RUN+="/usr/bin/touch /home/ploppz/charger"
    The battery does send signals to udev:
    $ udevadm monitor
    monitor will print the received events for:
    UDEV - the event which udev sends out after rule processing
    KERNEL - the kernel uevent
    # Plugging out:
    KERNEL[944.333548] change /devices/platform/ACPI0003:00/power_supply/AC (power_supply)
    UDEV [944.340228] change /devices/platform/ACPI0003:00/power_supply/AC (power_supply)
    KERNEL[944.426599] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [944.428599] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    KERNEL[944.470830] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [944.472781] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    # Plugging in:
    KERNEL[950.317263] change /devices/platform/ACPI0003:00/power_supply/AC (power_supply)
    KERNEL[950.331752] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [950.332023] change /devices/platform/ACPI0003:00/power_supply/AC (power_supply)
    KERNEL[950.332576] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [950.333609] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [950.334891] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    I also tried putting it in 99-lowbat.rules, stilll no luck. I'm also wondering whether udev reads all the rules every time an event happens, or if it caches them such that when I write a rule, I'll have to either wait a bit or do some action to update the rules cache?

  • RV016 Protocol Binding & Access Rules do not work on PPTP

    Hi
    I am Enabled PPTP Server and connection success, but can’t block the internet service by Protocol Binding and Access Rules for PPTP client.
    The PPTP Server:
    192.168.1.150~160
    Protocol Binding:
    HTTP [TCP/80~80] -> 192.168.1.150~160(0.0.0.0~0.0.0.0)
    Access Rules:
    1; Enable; Deny; HTTP [80]; LAN; 192.168.1.150~160; Any; Always
    Firmware Version: 3.0.0.19-tm
    I tried to test the setting by local PC connect the router directly. The rule is running.
    But by PPTP, it can go to internet. And confirmed the VPN IP is 192.168.1.150

    st1\:*{behavior:url(#ieooui) }
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:表格內文;
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:10.0pt;
    font-family:"Times New Roman";
    mso-fareast-font-family:"Times New Roman";
    mso-ansi-language:#0400;
    mso-fareast-language:#0400;
    mso-bidi-language:#0400;}
    HI  Mr Krastew.
    Thank you for your reply.
    But i am not looking stop internet web service on my client side only.
    May be I explain more here.
    The client PC is running on intranet, that mean client network stopped all service [1~65535: TCP/UDP] pass through WAN. At this moment, the client network allows the PPTP Port 1723 pass through it only. And the Client PC is running on manual configure No DNS.
    And the client requests that client PC NO intranet service when PPTP VPN connected. So I can't Disable Using Remote Network Default Gateway on TCP/IP Configure.
    And Server (RV016), half of pc allow connect to internet.
    The Local PC in server LAN can control by ACL.
    The client connected by PPTP and the IP still within the ACL. But it can access internet all service. (e.g. FTP, HTTP).
    So I want to know it is my configure problem? Or the router own problem? Or my design problem?
    Now, I key in wrong DNS on client PC to Cheat the user for temporary.
    Best regards,
    Joe Wong

  • AI CS6 Ruler don't work

    Dear Madam or Sir,
     I work with AI CS6. Now the ruler does't work at all.
    If I pull the ruler on the page it disappears. or if it is there I cant mark it and put it aside.
    I look forward to hearing from you!
    Morteza Ariana

    You need to provide system information. In any case, this question is best asked in teh AI forum.
    Mylenium

  • Firewall Access Rules do not work on One to One NAT (RV042G Router)

    I have two unique IP addresses, two servers, and one RV042G router. 
    What I would like to do is have each IP address go to it's own respective server. To do that, I've set the settings on One-to-One NAT to make this happen. Now IP address 1 points to server A and IP address 2 points to server B.
    However, I only want port 80 to be open to each server. I've tried setting the Firewall access rules to accommodate this but it doesn't appear to block anything. All ports on the servers are exposed despite the firewall rules.
    Here's what I have in the router configuration:
    Under One-to-One NAT:
    {internal IP address 1} => {external IP address 1}
    {internal IP address 2} => {external IP address 2}
    Under Firewall Access Rules:
    Action | Service | Source Interface | Source | Destination | Time
    Allow | HTTP Secondary 80 | WAN1 | Any | {internal IP address 1} | Always
    Deny | All Traffic | WAN1 | Any | Any | Always
    Is there a proper way to accomplish what I want?

    Thanks for replying. 
    Turns out I had to add new access rules to specifically deny all traffic to the internal addresses, in addition to the rule allowing the specified ports through.
    So, with the IP addresses still defined the same way in the One-to-One NAT section, I now have the following rules defined in the firewall section:
    Under Firewall Access Rules:
    Priority | Action | Service | Source Interface | Source | Destination | Time
    [1] | Allow | HTTP Secondary 80 | ANY | Any | {internal IP address 1} | Always
    [2] Deny | All Traffic | WAN1 | Any | { internal IP address 1 } | Always <== the new one I ended up adding
    (default) | Deny | All Traffic | WAN1 | Any | Any | Always <== built in default rule in router
    I originally did not add the second rule because I had assumed that the default deny rule would block all traffic to all internal IP addresses anyway. Perhaps someone can correct me if I'm wrong but I am now assuming that the default deny rule applies to the router only and not to any other defined One-to-One NAT entries. In which case, I had to add another rule that duplicates the default deny rule but for each 1:1 NAT entry.
    If this was already in the manual, I probably missed it so that would be my own mistake. Still, I wish this was more apparent in the web GUI as it didn't really specify that I had to do this.
    In any case, I hope my solution helps anyone else in the future having this similar issue.

  • 'Business Partner Assigned to the User' Access Sequence don't work

    Hello.
    I use access sequence 0008 (Business Partner Assigned to the User) in my Partner determination procedure. But it doesn't work. Corresponding Partner field in service document is empty. But I need that BP linked with logon user filled it.
    I've made the same settings on another incstanse of SM and it's work. And what the difference between I don't understand.
    Edited by: Dmitry Udot on Feb 13, 2011 2:31 AM

    Sorry, but I don't quite get it.  My purpose is to have 9 policies all working all the time (they did at in one version of firmware).  I don't care about time entries for these.  All 9 policies are full of keywords and websites to block webpages related to porn to one degree or another.  The 10th policy is time-based to prevent internet access altogether for one or two computers through the wee hours of the morning.  This, all in leu of having no parental controls.
    Again, it would help if there was more detailed documentation on how this all works.  This is the first I am aware that time settings in one policy could affect or impede the operation of other policies.  How am I supposed to know this?
    In any case, I appreciate your assistance and looking into this for me.  But can you now tell me how to make it work so the policies will work as I want - the first 9 around the clock all the time, and the 10th one only from 1:30 am to 8:00 am (every day).  Please instruct me on how I am supposed to configure this to work, and what specific settings I am supposed to enter... if it is even possible.  Or is there another way of accomplishing this on my WRT54G (Rev. 2) product?  Thanks.
    Perry

  • Rules don't work in email

    Hello,
    I have applied rules in Mail, to delete mail that contains certain words, but they only work when I manually click apply rules.  Shouldn't it happen automatically?  I want  junk mail to be deleted as soon as it arrives.  Don't want to view it at all.  Just want it to go away.  This is with AOL mail, no .me mail.  Any help would be greatly appreciated.
    thanks,
    donald

    Hello,
    I have applied rules in Mail, to delete mail that contains certain words, but they only work when I manually click apply rules.  Shouldn't it happen automatically?  I want  junk mail to be deleted as soon as it arrives.  Don't want to view it at all.  Just want it to go away.  This is with AOL mail, no .me mail.  Any help would be greatly appreciated.
    thanks,
    donald

  • Hardware Rules don't work - failed to return a task

    I am trying to make some post-imaging changes and though I'd give the Hardware Rules a go ( which I haven't used for a long, long time .. not in ZCM at least ). I am not getting an error similar to :
    http://forums.novell.com/novell/nove...rror-91-a.html
    Except for mine doesn't have an error code, it just says "Error: Failed to return a task" when I check for work to do manually ( F9 when running img on the device ). This device has been factory imaged using the image supplied with Zenworks agent installed and zac fsg -d was done before hutdown. I am not sure if that matters or not as I belive h/w rules are supposed to apply to both registered and non-registered devices ?
    Anyway, here is a pbserv.log:
    Mon Jan 9 18:49:12 2012 -- [LicenseCheck] Checking Imaging License
    Mon Jan 9 18:49:12 2012 -- [RNT] Server GUID is: 96cbb868c5389a6370fa25cae0053449
    Mon Jan 9 18:49:12 2012 -- [RNT] Imaging License Info: 1
    Mon Jan 9 18:49:12 2012 -- [LC] open connection, 10.129.50.10
    Mon Jan 9 18:49:12 2012 -- [PCV] received PROXY_CMD_VERSION
    Mon Jan 9 18:49:12 2012 -- [HC] versions: 10, 10, 103305
    Mon Jan 9 18:49:12 2012 -- [PCV] done PROXY_CMD_VERSION
    Mon Jan 9 18:49:12 2012 -- [PCGNT] received PROXY_CMD_GET_NEXT_STEP
    Mon Jan 9 18:49:12 2012 -- [RNT] WS GUID = "db6f55286cb56c4f8b4ce1267104188e"
    Mon Jan 9 18:49:12 2012 -- [RNT] GWIL = 5176
    Mon Jan 9 18:49:12 2012 -- [RNT] Received Workstation Information:
    Dumping Workstation Information:
    WorkstationInformation.signature ............ ZENWSINF
    WorkstationInformation.version .............. 6
    WorkstationInformation.length ............... 5176
    WorkstationInformation.Chipset .............. Intel(R) Corporation 1204 Mhz
    WorkstationInformation.Video ................ Intel Corporation Unknown device 0x0046
    WorkstationInformation.Network .............. Intel Corporation Unknown device 0x0082
    WorkstationInformation.Soundcard ............ Intel Corporation Unknown device 0x3B56
    WorkstationInformation.Diskcontroller ....... IDE
    WorkstationInformation.MACAddress............ 20:6a:8a:64:ff:8a
    WorkstationInformation.ipAddress ............ 10.129.50.10
    WorkstationInformation.BiosAssetTag ......... Base Board Asset Tag
    WorkstationInformation.BiosSerialnumber ..... 14704211
    WorkstationInformation.BiosVersion .......... INSYDE V1.24 05/06/2011
    WorkstationInformation.SystemManufacturer ... Acer
    WorkstationInformation.ProductName .......... Aspire One 753
    WorkstationInformation.HarddriveSizeMB ...... 305245
    WorkstationInformation.RAM .................. 4096
    WorkstationInformation.BootMedia ............ 3
    WorkstationInformation.zenPartitionType...... 0x00
    Mon Jan 9 18:49:12 2012 -- [RNT] PSI size = 164
    Mon Jan 9 18:49:12 2012 -- [RNT] Received PrebootState Information:
    Dumping PrebootStateInformation:
    PrebootStateInformation.signature ............ ZENPBINF
    Structure Version ... 3
    Structure Length ... 164
    Version ............... 0
    Flags ................. 0
    State ................. 4
    Tree ID ................
    Job ID ................
    Task ID ................ 0
    Task Completion Code ... 0
    Mon Jan 9 18:49:12 2012 -- [RNT] Error String:Err Fie ortr ak
    Mon Jan 9 18:49:12 2012 -- [RNT] Server GUID is: 96cbb868c5389a6370fa25cae0053449
    Mon Jan 9 18:49:12 2012 -- [RNT] Error SGNT: 2003
    Mon Jan 9 18:49:12 2012 -- [RNT] GNT returned 2003
    Mon Jan 9 18:49:12 2012 -- [RNT] Sending PrebootState Information:
    Dumping PrebootStateInformation:
    PrebootStateInformation.signature ............ ZENPBINF
    Structure Version ... 3
    Structure Length ... 164
    Version ............... 0
    Flags ................. 0
    State ................. 4
    Tree ID ................
    Job ID ................
    Task ID ................ 0
    Task Completion Code ... 0
    Mon Jan 9 18:49:12 2012 -- [PCGNT] done PROXY_CMD_GET_NEXT_STEP
    Mon Jan 9 18:49:12 2012 -- [PCC] received PROXY_CMD_CLOSE
    Mon Jan 9 18:49:12 2012 -- [PCC] done PROXY_CMD_CLOSE
    Mon Jan 9 18:49:12 2012 -- [LC] close connection, 10.129.50.10
    Mon Jan 9 18:49:12 2012 -- [ECC] CS
    Now I wonder what that Error SGNT might mean ..
    Originally I wanted to push just a linked application bundle ( a batch script to run ) but eventually tried adding our standard base image to no avail.
    When I try to apply the same imaging bundle to a different notebook ( using a different h/w rule ) - clearly using the right ProductName or BiosSerialnumber - it simply returns "No work to do". Which is better than failing to return a task but still .. doesn't do any work, really. Here it is:
    Mon Jan 9 19:00:37 2012 -- [LicenseCheck] Checking Imaging License
    Mon Jan 9 19:00:37 2012 -- [RNT] Server GUID is: 96cbb868c5389a6370fa25cae0053449
    Mon Jan 9 19:00:37 2012 -- [RNT] Imaging License Info: 1
    Mon Jan 9 19:00:37 2012 -- [LC] open connection, 10.129.50.11
    Mon Jan 9 19:00:37 2012 -- [PCV] received PROXY_CMD_VERSION
    Mon Jan 9 19:00:37 2012 -- [HC] versions: 10, 10, 103305
    Mon Jan 9 19:00:37 2012 -- [PCV] done PROXY_CMD_VERSION
    Mon Jan 9 19:00:37 2012 -- [PCGNT] received PROXY_CMD_GET_NEXT_STEP
    Mon Jan 9 19:00:37 2012 -- [RNT] WS GUID = "44398adf69915a4c8de5a15589ffd679"
    Mon Jan 9 19:00:37 2012 -- [RNT] GWIL = 5176
    Mon Jan 9 19:00:37 2012 -- [RNT] Received Workstation Information:
    Dumping Workstation Information:
    WorkstationInformation.signature ............ ZENWSINF
    WorkstationInformation.version .............. 6
    WorkstationInformation.length ............... 5176
    WorkstationInformation.Chipset .............. Intel(R) Corporation Pentium M processor 1200 Mhz
    WorkstationInformation.Video ................ Intel Corporation Unknown device 0x2A43
    WorkstationInformation.Network .............. Intel Corporation Unknown device 0x422C
    WorkstationInformation.Soundcard ............ Intel Corporation HD Audio Controller
    WorkstationInformation.Diskcontroller ....... IDE
    WorkstationInformation.MACAddress............ 60:eb:69:35:5d:2d
    WorkstationInformation.ipAddress ............ 10.129.50.11
    WorkstationInformation.BiosAssetTag ......... Base Board Asset Tag
    WorkstationInformation.BiosSerialnumber ..... 10102849
    WorkstationInformation.BiosVersion .......... INSYDE v1.3310 03/25/2010
    WorkstationInformation.SystemManufacturer ... Acer
    WorkstationInformation.ProductName .......... AO752
    WorkstationInformation.HarddriveSizeMB ...... 238475
    WorkstationInformation.RAM .................. 2048
    WorkstationInformation.BootMedia ............ 3
    WorkstationInformation.zenPartitionType...... 0x00
    Mon Jan 9 19:00:37 2012 -- [RNT] PSI size = 164
    Mon Jan 9 19:00:37 2012 -- [RNT] Received PrebootState Information:
    Dumping PrebootStateInformation:
    PrebootStateInformation.signature ............ ZENPBINF
    Structure Version ... 3
    Structure Length ... 164
    Version ............... 0
    Flags ................. 0
    State ................. 0
    Tree ID ................ c7ebeac25e25b763ad08e6c18bd67b44
    Job ID ................
    Task ID ................ 0
    Task Completion Code ... 0
    Mon Jan 9 19:00:37 2012 -- [RNT] Error String:N okt o
    Mon Jan 9 19:00:37 2012 -- [RNT] Server GUID is: 96cbb868c5389a6370fa25cae0053449
    Mon Jan 9 19:00:37 2012 -- [RNT] GNT returned 0
    Mon Jan 9 19:00:37 2012 -- [RNT] Sending PrebootState Information:
    Dumping PrebootStateInformation:
    PrebootStateInformation.signature ............ ZENPBINF
    Structure Version ... 3
    Structure Length ... 164
    Version ............... 0
    Flags ................. 0
    State ................. 0
    Tree ID ................ c7ebeac25e25b763ad08e6c18bd67b44
    Job ID ................
    Task ID ................ 0
    Task Completion Code ... 0
    Mon Jan 9 19:00:37 2012 -- [RNT] XML Size = 85
    Mon Jan 9 19:00:37 2012 -- [RNT] XML is = <ZENworks-Imaging><Type>Reboot-Command</Type><ErrCode>0</ErrCode></ZENworks-Imaging>
    Mon Jan 9 19:00:37 2012 -- [PCGNT] done PROXY_CMD_GET_NEXT_STEP
    Mon Jan 9 19:00:37 2012 -- [PCC] received PROXY_CMD_CLOSE
    Mon Jan 9 19:00:37 2012 -- [PCC] done PROXY_CMD_CLOSE
    Mon Jan 9 19:00:37 2012 -- [LC] close connection, 10.129.50.11
    Mon Jan 9 19:00:37 2012 -- [ECC] CS
    Am I missing something here ?

    Try Clearing the ZISD on the device and see if it follows the rules.
    If so, we can go from there..............
    On 1/9/2012 2:16 AM, atrofimov wrote:
    >
    > I am trying to make some post-imaging changes and though I'd give the
    > Hardware Rules a go ( which I haven't used for a long, long time .. not
    > in ZCM at least ). I am not getting an error similar to :
    >
    > http://forums.novell.com/novell/nove...rror-91-a.html
    >
    > Except for mine doesn't have an error code, it just says "Error: Failed
    > to return a task" when I check for work to do manually ( F9 when running
    > img on the device ). This device has been factory imaged using the image
    > supplied with Zenworks agent installed and zac fsg -d was done before
    > hutdown. I am not sure if that matters or not as I belive h/w rules are
    > supposed to apply to both registered and non-registered devices ?
    >
    > Anyway, here is a pbserv.log:
    >> Mon Jan 9 18:49:12 2012 -- [LicenseCheck] Checking Imaging License
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Server GUID is:
    >> 96cbb868c5389a6370fa25cae0053449
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Imaging License Info: 1
    >> Mon Jan 9 18:49:12 2012 -- [LC] open connection, 10.129.50.10
    >> Mon Jan 9 18:49:12 2012 -- [PCV] received PROXY_CMD_VERSION
    >> Mon Jan 9 18:49:12 2012 -- [HC] versions: 10, 10, 103305
    >> Mon Jan 9 18:49:12 2012 -- [PCV] done PROXY_CMD_VERSION
    >> Mon Jan 9 18:49:12 2012 -- [PCGNT] received PROXY_CMD_GET_NEXT_STEP
    >> Mon Jan 9 18:49:12 2012 -- [RNT] WS GUID =
    >> "db6f55286cb56c4f8b4ce1267104188e"
    >> Mon Jan 9 18:49:12 2012 -- [RNT] GWIL = 5176
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Received Workstation Information:
    >> Dumping Workstation Information:
    >> WorkstationInformation.signature ............ ZENWSINF
    >> WorkstationInformation.version .............. 6
    >> WorkstationInformation.length ............... 5176
    >> WorkstationInformation.Chipset .............. Intel(R) Corporation
    >> 1204 Mhz
    >> WorkstationInformation.Video ................ Intel Corporation
    >> Unknown device 0x0046
    >> WorkstationInformation.Network .............. Intel Corporation
    >> Unknown device 0x0082
    >> WorkstationInformation.Soundcard ............ Intel Corporation
    >> Unknown device 0x3B56
    >> WorkstationInformation.Diskcontroller ....... IDE
    >> WorkstationInformation.MACAddress............ 20:6a:8a:64:ff:8a
    >> WorkstationInformation.ipAddress ............ 10.129.50.10
    >> WorkstationInformation.BiosAssetTag ......... Base Board Asset Tag
    >> WorkstationInformation.BiosSerialnumber ..... 14704211
    >> WorkstationInformation.BiosVersion .......... INSYDE V1.24
    >> 05/06/2011
    >> WorkstationInformation.SystemManufacturer ... Acer
    >> WorkstationInformation.ProductName .......... Aspire One 753
    >> WorkstationInformation.HarddriveSizeMB ...... 305245
    >> WorkstationInformation.RAM .................. 4096
    >> WorkstationInformation.BootMedia ............ 3
    >> WorkstationInformation.zenPartitionType...... 0x00
    >> Mon Jan 9 18:49:12 2012 -- [RNT] PSI size = 164
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Received PrebootState Information:
    >> Dumping PrebootStateInformation:
    >> PrebootStateInformation.signature ............ ZENPBINF
    >> Structure Version ... 3
    >> Structure Length ... 164
    >> Version ............... 0
    >> Flags ................. 0
    >> State ................. 4
    >> Tree ID ................
    >> Job ID ................
    >> Task ID ................ 0
    >> Task Completion Code ... 0
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Error String:Err Fie ortr ak
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Server GUID is:
    >> 96cbb868c5389a6370fa25cae0053449
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Error SGNT: 2003
    >> Mon Jan 9 18:49:12 2012 -- [RNT] GNT returned 2003
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Sending PrebootState Information:
    >> Dumping PrebootStateInformation:
    >> PrebootStateInformation.signature ............ ZENPBINF
    >> Structure Version ... 3
    >> Structure Length ... 164
    >> Version ............... 0
    >> Flags ................. 0
    >> State ................. 4
    >> Tree ID ................
    >> Job ID ................
    >> Task ID ................ 0
    >> Task Completion Code ... 0
    >> Mon Jan 9 18:49:12 2012 -- [PCGNT] done PROXY_CMD_GET_NEXT_STEP
    >> Mon Jan 9 18:49:12 2012 -- [PCC] received PROXY_CMD_CLOSE
    >> Mon Jan 9 18:49:12 2012 -- [PCC] done PROXY_CMD_CLOSE
    >> Mon Jan 9 18:49:12 2012 -- [LC] close connection, 10.129.50.10
    >> Mon Jan 9 18:49:12 2012 -- [ECC] CS
    > Now I wonder what that Error SGNT might mean ..
    >
    > Originally I wanted to push just a linked application bundle ( a batch
    > script to run ) but eventually tried adding our standard base image to
    > no avail.
    >
    > When I try to apply the same imaging bundle to a different notebook (
    > using a different h/w rule ) - clearly using the right ProductName or
    > BiosSerialnumber - it simply returns "No work to do". Which is better
    > than failing to return a task but still .. doesn't do any work, really.
    > Here it is:
    >> Mon Jan 9 19:00:37 2012 -- [LicenseCheck] Checking Imaging License
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Server GUID is:
    >> 96cbb868c5389a6370fa25cae0053449
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Imaging License Info: 1
    >> Mon Jan 9 19:00:37 2012 -- [LC] open connection, 10.129.50.11
    >> Mon Jan 9 19:00:37 2012 -- [PCV] received PROXY_CMD_VERSION
    >> Mon Jan 9 19:00:37 2012 -- [HC] versions: 10, 10, 103305
    >> Mon Jan 9 19:00:37 2012 -- [PCV] done PROXY_CMD_VERSION
    >> Mon Jan 9 19:00:37 2012 -- [PCGNT] received PROXY_CMD_GET_NEXT_STEP
    >> Mon Jan 9 19:00:37 2012 -- [RNT] WS GUID =
    >> "44398adf69915a4c8de5a15589ffd679"
    >> Mon Jan 9 19:00:37 2012 -- [RNT] GWIL = 5176
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Received Workstation Information:
    >> Dumping Workstation Information:
    >> WorkstationInformation.signature ............ ZENWSINF
    >> WorkstationInformation.version .............. 6
    >> WorkstationInformation.length ............... 5176
    >> WorkstationInformation.Chipset .............. Intel(R) Corporation
    >> Pentium M processor 1200 Mhz
    >> WorkstationInformation.Video ................ Intel Corporation
    >> Unknown device 0x2A43
    >> WorkstationInformation.Network .............. Intel Corporation
    >> Unknown device 0x422C
    >> WorkstationInformation.Soundcard ............ Intel Corporation HD
    >> Audio Controller
    >> WorkstationInformation.Diskcontroller ....... IDE
    >> WorkstationInformation.MACAddress............ 60:eb:69:35:5d:2d
    >> WorkstationInformation.ipAddress ............ 10.129.50.11
    >> WorkstationInformation.BiosAssetTag ......... Base Board Asset Tag
    >> WorkstationInformation.BiosSerialnumber ..... 10102849
    >> WorkstationInformation.BiosVersion .......... INSYDE v1.3310
    >> 03/25/2010
    >> WorkstationInformation.SystemManufacturer ... Acer
    >> WorkstationInformation.ProductName .......... AO752
    >> WorkstationInformation.HarddriveSizeMB ...... 238475
    >> WorkstationInformation.RAM .................. 2048
    >> WorkstationInformation.BootMedia ............ 3
    >> WorkstationInformation.zenPartitionType...... 0x00
    >> Mon Jan 9 19:00:37 2012 -- [RNT] PSI size = 164
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Received PrebootState Information:
    >> Dumping PrebootStateInformation:
    >> PrebootStateInformation.signature ............ ZENPBINF
    >> Structure Version ... 3
    >> Structure Length ... 164
    >> Version ............... 0
    >> Flags ................. 0
    >> State ................. 0
    >> Tree ID ................ c7ebeac25e25b763ad08e6c18bd67b44
    >> Job ID ................
    >> Task ID ................ 0
    >> Task Completion Code ... 0
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Error String:N okt o
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Server GUID is:
    >> 96cbb868c5389a6370fa25cae0053449
    >> Mon Jan 9 19:00:37 2012 -- [RNT] GNT returned 0
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Sending PrebootState Information:
    >> Dumping PrebootStateInformation:
    >> PrebootStateInformation.signature ............ ZENPBINF
    >> Structure Version ... 3
    >> Structure Length ... 164
    >> Version ............... 0
    >> Flags ................. 0
    >> State ................. 0
    >> Tree ID ................ c7ebeac25e25b763ad08e6c18bd67b44
    >> Job ID ................
    >> Task ID ................ 0
    >> Task Completion Code ... 0
    >> Mon Jan 9 19:00:37 2012 -- [RNT] XML Size = 85
    >> Mon Jan 9 19:00:37 2012 -- [RNT] XML is =
    >> <ZENworks-Imaging><Type>Reboot-Command</Type><ErrCode>0</ErrCode></ZENworks-Imaging>
    >> Mon Jan 9 19:00:37 2012 -- [PCGNT] done PROXY_CMD_GET_NEXT_STEP
    >> Mon Jan 9 19:00:37 2012 -- [PCC] received PROXY_CMD_CLOSE
    >> Mon Jan 9 19:00:37 2012 -- [PCC] done PROXY_CMD_CLOSE
    >> Mon Jan 9 19:00:37 2012 -- [LC] close connection, 10.129.50.11
    >> Mon Jan 9 19:00:37 2012 -- [ECC] CS
    >>
    >
    > Am I missing something here ?
    >
    >
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Knowledge Partner
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.

  • Applescript Rules Don't Work in 10.8 Mail.app

    Very simple thing Im trying to do here. Set up a rules to run a simple growl notification script when a new mail with a vertain subject arrives. This script works perfectly file in the editor and runs file outside of the mail.app.
    Set to to run as a rule using the run actionscript option in mail.app - but it will never run.
    Why would this script run fine outside of mail.app, but not as an actionscript rule?
    tell application "System Events"
        set isRunning to (count of (every process whose bundle identifier is "com.Growl.GrowlHelperApp")) > 0
    end tell
    if isRunning then
        tell application id "com.Growl.GrowlHelperApp"
            -- Make a list of all the notification types
            -- that this script will ever send:
            set the allNotificationsList to ¬
                {"Payment Received"}
            -- Make a list of the notifications
            -- that will be enabled by default.     
            -- Those not enabled by default can be enabled later
            -- in the 'Applications' tab of the growl prefpane.
            set the enabledNotificationsList to ¬
                {"Payment Received"}
            -- Register our script with growl.
            -- You can optionally (as here) set a default icon
            -- for this script's notifications.
            register as application ¬
                "PayPal Alert" all notifications allNotificationsList ¬
                default notifications enabledNotificationsList ¬
            --       Send a Notification...
            notify with name ¬
                "Payment Received" title ¬
                "Payment Received" description ¬
                "You have received a payment." application name "PayPal Alert"
        end tell
    end if

    system preferences>keyboard>keyboard shortcuts doesn't give you anything?

  • Rules don't work

    I am receiving lots of spam where the content of the message is an attachment. Each attachment is named differently, however, the content of the attachment always begin with the same words regarding new stock hitting the market. The attachments are ".gif". I have tried to tell "Rules" to look at all "content" and find those words and if found "delete" the e-mail. Nothing works. The auto function does nothing and manual does nothing. Below is the way each attachment begins. Any suggestions or advice on how to use Apple script??
    Best New Stock For Year 2006
    EXPLOSIVE PICK FOR OUR MEMBERS
    TRADING ALERT!!!

    Bruce, the mail you've forwarded me confirms what I told you before. There is no real text there, it's all just a pattern of bits that Mail cannot do anything with. It's like a FAX, you would need an OCR application to extract any text from it. Actually, I'm pretty sure the spammer did it on purpose precisely to avoid the junk filters.
    Save the attachment and open it with Preview or any other application capable of viewing it, and you'll see that you are unable to select any text, simply because there is no text there. It's just an image that your brain decodes as text, but the computer cannot do the same without the aid of OCR software.
    BTW, I have no idea why the first attempt to send you an email failed. Maybe we should start yet another "cannot send" or "mail I send does not arrive at the destination" thread about that...

Maybe you are looking for