Please review my firewall script

This script is for my server, please don't laugh I'm a beginner in this area
My policy is to close everything and open needed ports only. Authentic pinging should be allowed
#!/usr/bin/bash
# Please check for iptables path first.
IPTABLES="/sbin/iptables"
FWD=`cat /proc/sys/net/ipv4/ip_forward`
echo 0 > /proc/sys/net/ipv4/ip_forward
echo 30 > /proc/sys/net/ipv4/tcp_fin_timeout
echo 1800 > /proc/sys/net/ipv4/tcp_keepalive_intvl
# Flush the old tables
$IPTABLES -F
$IPTABLES -X
# Set default dropping policy
$IPTABLES -P INPUT DROP
$IPTABLES -P OUTPUT DROP
$IPTABLES -P FORWARD DROP
# Rules
# Allows incoming connections that are related to outgoing connection
$IPTABLES -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
$IPTABLES -A OUTPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
$IPTABLES -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
# Block invalid ICMP packets
$IPTABLES -A INPUT -m state -p icmp --state INVALID -j DROP
$IPTABLES -A FORWARD -m state -p icmp --state INVALID -j DROP
$IPTABLES -A OUTPUT -m state -p icmp --state INVALID -j DROP
$IPTABLES -A FORWARD -m state -p icmp --state INVALID -j DROP
# Block NEW without SYN
$IPTABLES -A INPUT -p tcp ! --syn -m state --state NEW -j DROP
# Block fragments and Xmas tree as well as SYN,FIN, and SYN,RST
$IPTABLES -A INPUT -p ip -f -j DROP
$IPTABLES -A INPUT -p tcp --tcp-flags ALL ACK,RST,SYN,FIN -j DROP
$IPTABLES -A INPUT -p tcp --tcp-flags SYN,FIN SYN,FIN -j DROP
$IPTABLES -A INPUT -p tcp --tcp-flags SYN,RST SYN,RST -j DROP
# Allow ping
$IPTABLES -A INPUT -p icmp --icmp-type 11/1 -m state --state NEW -j ACCEPT
$IPTABLES -A INPUT -p icmp --icmp-type 11/0 -m state --state NEW -j ACCEPT
$IPTABLES -A INPUT -p icmp --icmp-type 0/0 -m state --state NEW -j ACCEPT
$IPTABLES -A INPUT -p icmp --icmp-type 8/0 -m state --state NEW -j ACCEPT
$IPTABLES -A INPUT -p icmp --icmp-type 3 -m state --state NEW -j ACCEPT
$IPTABLES -A INPUT -p tcp -m multiport --destination-port 22,80,443 -m state --state NEW -j ACCEPT
# Allow unlimited traffic on loopback
$IPTABLES -A INPUT -i lo -j ACCEPT
$IPTABLES -A OUTPUT -o lo -j ACCEPT
# Allow all outgoing connections
$IPTABLES -A OUTPUT -m state --state NEW -j ACCEPT
# Make sure nothing comes or goes out of this box
$IPTABLES -A INPUT -j DROP
$IPTABLES -A OUTPUT -j DROP
$IPTABLES -A FORWARD -j DROP
Are the seperating DROP rules redundant ? Setting standard dropping policy is enough, right ?

To my knowledge a package that does not match any rules will be matched against the default policy, so you do not have to drop everything explicitly.
And you have a double
# Block invalid ICMP packets
$IPTABLES -A FORWARD -m state -p icmp --state INVALID -j DROP
$IPTABLES -A FORWARD -m state -p icmp --state INVALID -j DROP
Which - if my previous statement is correct - you shouldn't need at all (the DROP rules, that is).
I don't get why you're specifying this again either:
# Make sure nothing comes or goes out of this box
$IPTABLES -A INPUT -j DROP
$IPTABLES -A OUTPUT -j DROP
$IPTABLES -A FORWARD -j DROP
You already set policies, to me this looks like twice the work...
Also, keep in mind iptables will treat the rules chronologically. So first you define what's allowed, then you define what's blocked. It will work its way down the rules until it finds a match, if not, it will resort to the default policy.
Edit: Bash is in /bin on Arch, not /usr/bin.

Similar Messages

  • Please review the RMAN script and throw any comments which will increase KB

    Dear Sirs:
    I would be grateful if anyone in this forum checks whether the RMAN strategy taken by me is OK or require any room for improvement. I have not yet
    moved into production.
    Environment: ORACLE 10G R2 running on RAC, RHEL 4.0 for Intel Itanium. RMAN script runs every night at 10PM from node 1 of 2.
    ASM is used and all datafiles, controlfiles, arc, redo in SAN
    Process:
    <1> Empty folder "PreviousdayBackup
    <2> Move backup of yesterday night to "PreviousdayBackup"
    <3> Execute RMAN the script provided below.
    run {
         backup
              filesperset=15
              incremental level 0
              spfile format '/archive/backup/rman/spfile_%d_%s_%T.bak' tag 'spfile_backup'
              database format '/archive/backup/rman/data_%d_%s_%T.bak' tag 'full_data_backup';
              crosscheck backup;
              sql 'alter system archive log current';
              crosscheck archivelog all;
              backup filesperset 288 format '/archive/backup/rman/cscdb_data_archive_%d_%u' archivelog all delete input;
              delete archivelog all completed before 'sysdate-7';
              delete noprompt expired archivelog all;
              delete noprompt obsolete;
              backup current controlfile format '/archive/backup/rman/%d_data_control_%s_%p_%u' tag 'control_file';
    The Tape runs at 3:00AM in the morning and takes all the files from '/archive/backup/rman/'
    _*RMAN Configuration*_
    CONFIGURE RETENTION POLICY TO REDUNDANCY 2;
    CONFIGURE BACKUP OPTIMIZATION OFF;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/archive/backup/rman/ctrl_%F';
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE MAXSETSIZE TO UNLIMITED;
    CONFIGURE ENCRYPTION FOR DATABASE OFF;
    CONFIGURE ENCRYPTION ALGORITHM 'AES128';
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE;
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/oracle/product/1020/db_1/database/snapcf_cscdb1.f';
    I am also not getting the concepts properly on :
    delete archivelog all completed before 'sysdate-7';
    delete noprompt expired archivelog all;
    delete noprompt obsolete;
    Is the delete within the RMAN pieces or within the folder. It would be great if someone can explain me on these
    Awaiting for your kind response
    Caesar
    Edited by: caesar dutta on 10-May-2012 00:10

    Hi emre baransel :
    Step 1: Delete from folder "previousdaybackup"
    Step 2: Move last night backup from "/archive/backup/rman" to "previousdaybackup"
    Step 3: Run RMAN and backup is stored at "/archive/backup/rman"
    Stpe 4: Data is backed up to DLT cartridge from "/archive/backup/rman"
    The folder "/archive/backup/rman" is a separate partition from SAN mounted in the LINUX SYSTEM as ext3
    Why did you chose filesperset=15, do you have specific purpose?Well I am looking at existing RMAN in the place and not changing any basic configuration. Frankly speaking I do not have answer to this.
    I have changed the RMAN commands as
    run {
         backup
              filesperset=15
              incremental level 0
              spfile format 'D:\archive\backup\rman\cscdb1\spfile_%d_%s_%T.bak' tag 'spfile_backup'
              database format 'D:\archive\backup\rman\cscdb1\data_%d_%s_%T.bak' tag 'full_data_backup';
              crosscheck backup;
              sql 'alter system archive log current';
              crosscheck archivelog all;
              backup filesperset 288 format 'D:\archive\backup\rman\cscdb1\cscdb_data_archive_%d_%u' archivelog all not backed up 2 times;
              delete noprompt archivelog all completed before 'sysdate-7';
              delete noprompt expired archivelog all;
              delete noprompt obsolete;
    I feel that I will be in a safer side.
    Please provide comments. Anything that will increase knowledge base and will educate others too in this forum.
    regards,
    caesar

  • Please review OS Builder scripts

    Hi all,
    I published my project here for building a system from scratch:
    https://github.com/walterjwhite/OS-builder
    It currently supports building Arch / Funtoo / Gentoo images.  It will install software, configure the system (apply an overlay of configuration files), run configuration commands, setup users and groups  I will have to show a sample 'system' configuration to illustrate how it works.  I was looking for feedback regarding the scripts to see: 1, is there a similar thing that does a better job, 2, if the community would think it would be useful.
    This is similar to the archiso / archbuild scripts but handles much more configuration on top of that.  It still does have some hard-references, but it can be adapted.
    I use this to periodically generate systems to use and at the same time keep a running backup of my system with all the configuration steps applied.
    Thanks,
    Walter

    xx

  • EPrint/Apps Connectivity Troubleshooting - Please Review

    ePrint & Print Apps Connectivity Troubleshooting Steps – Please Review before posting
    This information below is provided to help you to resolve web services connectivity problems to enable your printer to print with ePrint, launch/use Print Apps, enable web services, print your web services info sheet, or add your printer to your account on the HP ePrintCenter.   Only items that have actually been shown to resolve customer issues have been included in the list.   
    For best results review and apply the applicable steps below in the order presented before posting a request for help in the forum, so that forum members who respond to your post can provide the best possible assistance.  
    Also see this post (http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mobile/Start-here-Web-Services-How-To-and-Troubleshoo...) for additional “how-to” and links to important web services information, FAQs, and Help content.
    Before applying the troubleshooting information below:
    If you receive an “Invalid code” message when you try to add your printer to your HPePrintCenter account, but aren’t having any other problems using ePrint and Print Apps, you most likely only need to reprint your web services info sheet from your printer.  Your printer's claiming code that is printed on the info sheet can only be used to add your printer to your ePC account for 24 hours after printing the info sheet.  Reprinting the info sheet doesn't change your claiming code, it just re-enables your printer to be added to your ePC account for another 24 hours.  See here for the steps to re-print your web services info sheet.
    If you enabled Web Services on your printer but the Web Services info sheet containing your printer’s claiming code did not print, your printer has not fully completed its web services registration and will not print ePrint emails or print app content.  In this case you will not receive any error messages on the printer and you can view your printer’s email address on the printer front panel display.  If your web services info sheet does not print within five minutes of enabling web services, try removing and enabling web services again.  If your Web Services info sheet still does not print after re-enabling web services, you will need to wait and try again later.   If you do receive error messages when trying to enable web services, continue to the web services connectivity troubleshooting steps below.
    If you have ePrint emails that aren’t printing, please first ensure you confirm your emails meet ePrint format/attachment requirements.  Review the ePrint email requirements in the ePrint FAQ/Help on HP ePrintCenter at www.hpeprintcenter.com.  You can also check your printer’s connectivity status and ePrint job list on HP ePrintCenter if you have created an account there and added your printer.  (Always use the “Refresh” button on the ePC page, not your browser refresh button, to view updated printer connection status on the HP ePrintCenter.)  
    A.     Easy steps that can be surprisingly helpful – try these first:
    Verify your network’s internet access is working – on a computer connected to your network, use a web browser like Internet Explorer or Firefox to view a web page.  If you can’t access the internet your internet service provider may be having a service issue that is affecting ePrint/Print Apps. 
    Go to HP ePrintCenter and look in the News section (http://h30495.www3.hp.com/news/ ) to see if there are any service status updates.  In some cases, you might just need to wait a little while and try again.  
    Turn wifi off and then on again on your printer and wait for a minute for your printer to reconnect to your network   
    Reboot your printer - turn power off and then on) and wait for a minute for it to reconnect to your network
    Reboot your router - remove the power cord from the back of the router, wait a minute, and then plug it in again and wait for at least a minute for the router to power up and all your devices to reconnect.
    B.      Check your printer’s IP address to confirm it is connected to your network.   
    Verify that your printer has a valid IP address (for example, typically 192.168.x.x on a home wireless network) by viewing the network settings screen in the Networking or Wireless menu on your device’s front panel display, or by printing a Printer Status Report (usually found on the Tools menu).  If your printer does not have a valid IP address re-run the network setup process for your printer.   For more help with setting up or troubleshooting your HP printer’s connection to a wireless network, go to http://www.hp.com/go/wirelessprinting
    C.      Confirm that both your printer and router have up-to-date firmware:
    Having up-to-date firmware on your printer or router is important to use web services.  
    Check to ensure you have the latest firmware (FW) for your printer by checking for product updates, usually found under the “Web” or “Preferences” options on your printer’s menu.  If your printer finds an update but is unable to complete downloading/installing it, ensure your router FW is up to date and try again.  If your printer continues to fail to complete the download of an available FW update, continue to “E. Set a Manual IP/DNS Server” below.
    Check to ensure that you have the latest firmware for your router – review your router documentation/help (or the router manufacturer’s web site) for information on how to check for and install firmware updates.  
    Resolve temporary connection failure after printer firmware upgrade    
    Some printers may experience connection failure after firmware upgrade.  This is because the printer reboots itself after firmware updates and needs to re-establish network connection.   
    Check to ensure the printer has been given a valid local IP by your router (eg. 192.168.x.x if DHCP is used) before trying to access print apps or using ePrint.   You can see your printer’s IP address by going to the printer’s Wireless or Network setup menu.
    If you don’t see an IP, you may have to restart the printer.  In some cases, you may have to remove and re-enable web services to re-establish your connection.
    Refer to the FAQ & Help section on HP ePrintCenter for more information on how to remove and re-enable web services from your printer.
     Allow your printer enough time to reconnect to your network after you try any of the steps above, before you try ePrint or Print Apps again. 
    D.     Remove and Re-enable Web Services and Restore Factory Defaults
    Remove and then re-enable web services on your printer.  If the web services info sheet does not automatically print within a few minutes of re-enabling web services, web services has not been fully enabled on your printer.   You may need to wait and remove and re-enable web services again in few hours to allow the issues affecting your printer’s communication with the cloud servers to clear up.  Until a web services info sheet prints out your web services registration is not complete.   Complete the steps below while your printer is connected to the Internet.
    Photosmart:  The Remove Web Services option is available either under the Setup>Wireless>Web Services menu option, or the Setup>Web option, or via the ePrint icon on the printer front panel. 
    On the eStation select the Menu button on the eStation display (to the right of the Home and Back buttons at the top left when the display is docked on the printer); Select Settings;  Select "Web Services”; Select the “Web Services” checkbox. 
    Officejet:  Use Setup > Web Services Setup > Restore Factory Settings to remove Web Services from the printer. 
    LaserJet: Print a configuration page from your printer to locate the IP address. Open a Web browser and type the product IP address into the address line. The HP-embedded Web Server will open. Click the HP Web Services tab. Select the option to remove Web Services.
    2.  Restore Factory Defaults on your device.  If removing and re-enabling web services does not resolve the problem, restore factory defaults on your printer and try again.  The factory default option is usually found in the Setup>Tools menu on your printer.   Do the following on your device:
    Remove/Disable Web Services 
    Restore factory defaults/settings (depending on the printer this is found under the Setup>Tools menu, or the Setup>Web Services menus, but varies by printer) 
    If prompted, re-do initial setup of your device and add it to your network
    Re-enable Web Services 
    Once the Web Services information sheet is printed, use the printer claiming code to add your printer to your account on ePrintCenter
    E.      Set a Manual IP/DNS Server settings on your printer
    Setting a manual IP address/DNS Server on your printer will resolve web services connectivity issues that can occur on some networks with some routers.  Note:  Setting a manual IP/DNS Server may be particularly helpful on networks using DSL/VIOS routers.   
    Please read the instructions below completely before applying them.  You should not attempt these on your own if you don't understand networking basics.  Most of us have a "techie" buddy/friend/family member...if you're not comfortable this might be a good time to call him/her, or contact HP support to assist you.  
    Before you begin, first remove Web Services from your printer if it has been enabled.  (See section D. 1. above.)   Removing web services will remove your printer from your HPePrintCenter.com account (if you have previously set up an account and added it).  When you re-enable web services after completing these steps you will have a new ePrint email address and need to add your printer to your ePC account again. 
    How to set a manual IP address/DNS Server on your web-connected printer:
    Print a Network Configuration Page from the printer front panel.  On some printers this will be under Wireless>Wireless Settings, and on other models use the “Print Report” option from the Wireless status screen accessed from the wireless icon on the printer home screen.   Note the printer's IP address that is listed in the IPv4 section of the report.  On most printers you can also see the printer’s IP address from the Wireless menu, or on the Wireless status screen.  
    Type that IP address into your browser address bar (where you would normally type a web page URL) and hit enter - this will load the printer's internal settings page (also known as an Embedded Web Server, or EWS)
    Select the “Network” or “Networking” tab (the label varies depending on printer model) from the tabs along the top of the screen in the EWS
    Depending on your printer model, the next step(s) will vary:
    Select the “IPv4” option from along the left side of the Networking screen   
    or
    Select the “Networking” option from the left side of the screen
    Then select the “Network Address (IP)” option from the left side of the screen
    The screen you end up on should be the “IP Address Configuration” screen.  That screen allows you to choose an Automatic or Manual (i.e., fixed) IP address for your printer, as well as Subnet Mask and Default Gateway values.   You will use this screen to set a Manual IP address and DNS Server for your printer.  
    To continue:
    Select the radio button next to “Manual IP”
    Select the “Suggest a Manual IP Address” option below the IP address fields.  The Manual IP address fields will automatically populate with suggested values after a few moments.
    Select the “Manual DNS Server” radio button in the DNS Address Configuration section 
    Enter the address just entered in the “Manual Default Gateway” into the “Manual Preferred DNS Server” field.  Leave the “Manual Alternate DNS Server” entry blank.
    Carefully double-check the values you entered to make sure they are all correct. 
    Click 'Apply'
    Save any open documents and close any web browsers on any computers
    Turn off the printer and unplug the router. 
    Plug in the router, wait for it to start up and for status lights to settle down (approximately a minute at least), then turn on the printer.
     After the printer has connected to your network, enable web services on your device, accept any firmware updates that may be offered, and add your printer to your account on HPePrintCenter. 
    In some cases you might need to add the printer to your computer’s Printer/My Printers folder again, after you set the new manual IP address.   If you have problems printing to your printer, simply use the option to add a printer, select the Networked printer type, and complete the add printer wizard.  You will not need to reinstall any printer software on your computer.  
    F.       Check for port/proxy issues  
    Note:  These issues are not commonly experienced, and primarily affect users in business environments. 
    ePrint and Print Apps require access to establish connections out to HP servers via ports 80, 443, 5222 and 5223.   Primarily in some business environments, network administrators may block devices initiating communication from within the firewall on some of these ports.  Please check with your network administrator or Internet Service Provider to make sure those ports are not blocked on your router/firewall for outward-bound communication initiated by your printer. 
    Important Note:  We are not suggesting that you set up port forwarding on your router to open these ports for connections initiated from outside your network to your printer.  That is not required and could be a security risk for your network. 
    2. In some business environments the local network which the printer is connected to may require a proxy setting to access the Internet.   Check with your IT Administrator or Internet Service Provider (ISP) for proxy setting if necessary.  Most ISP for home users do not require proxy configuration for Internet access.  (Note: HP web connect printers currently do not support secure proxy servers)  
    To set a proxy on an Officejet All-in-One, see this document:  http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02524629&cc=us&dlc=en&lc=en&jumpid=reg_R1002_US... 
    If the steps above have not resolved your ability to use ePrint/Print Apps, please submit a question in the here in this support forum, confirming you have completed this connectivity troubleshooting and identifying the error/problem you are experiencing.  Thank you.
    I am an HP employee.
    This question was solved.
    View Solution.

    eprint has to be the biggest boondoggle ever created. HP should be embarrased by their incompeetance - been two weeks and I have not been able to access the feature. Told a number of times (after LONG wait on phone) that there were problems with their servers and to try again in a day or so - very helpful and professional. Feel like I'm dealing with "Dogbert" customer support in Dilbert cartoon world. Can't log on using snapfish or any other means. I guess I just have to give up and recognize that HP just doesn't care - false advertising and promotion. No satisfaction.

  • I cannot sign in.  "This Apple ID has not yet been used with the iTunes Store.  Please review your account information."  I click "Review", next message "You must turn on cookies to continue.   Cookies must be enabled if you want to create or edit.. etc."

    I applied and received an upgrade code to Redeem Mountain Lion for my new MBP. 
    I get this message when I try to Sign in to the App Store after entering the redemption content code, and also if I just try to "Sign In".   The first part of the error is true - I haven't used the AppleID with the iTunes store.  
    I received the upgrade code using this same AppleID, so I don't think I can use a different AppleID.
    I also tried to re-create this appleID...(it was one suggestion I saw for this issue) It doesn't let me since the ID already exists...
    The error is:
    "This Apple ID has not yet been used with the iTunes Store.  Please review your account information."  I click "Review", next message "You must turn on cookies to continue.   Cookies must be enabled if you want to create or edit.. etc." 
    It's clearly not a cookie issue..   Stuck...

    The first part of the error is true - I haven't used the AppleID with the iTunes store. 
    Try here >  Using an existing Apple ID with the iTunes Store and Mac App Store
    received the upgrade code using this same AppleID, so I don't think I can use a different AppleID.
    Correct.
    It's clearly not a cookie issue..
    As for cookies. Quit the App Store. Now open the Finder. From the Finder menu bar click Go > Go to Folder.
    Type this exactly as you see it here:   ~/Library/Cookies
    Click Go the move the   com.apple.appstore.plist   file from the Cookies folder to the Trash.
    Relaunch the App Store.

  • I have an Apple ID and trying to sign in for the 1st time on iTunes. When I do, I get the message: "This Apple ID has not been used with the iTunes Store. Please review your account information." When I do, I get stuck in the same loop and can't sign in!

    I have an Apple ID and trying to sign in for the 1st time on iTunes. When I do, I get the message: "This Apple ID has not been used with the iTunes Store. Please review your account information." When I do, it brings me to the same AppleID login window, and I get stuck in the same loop. I never get to the following screen to enter my account info. What's going on?? This is MADDENING!

    If you want to use it, click Review and check your account information.  Or you could contact the store support staff if you are concerned at http://www.apple.com/emea/support/itunes/contact.html for further help.

  • Apple id has not been used with the itunes store-please review your account information

    Hello,
    Good Day.
    I bought apple ipad 2 and need help.
    I registered online and after this i am getting the error.
    apple id has not been used with the itunes store-please review your account information
    Can any one help me in this issue.
    Thanks&Regards,
    Shankar.M

    This is information you you have created an apple id.
    To use this apple id for the itunes store, you have to agree to the terms and conditions and enter in the requested information before you can use the store.
    When you create an apple id it does not mean you gain access to all apples features, you would need to create a :-
    Itunes id
    Facetime id
    Game centre id
    imessage id
    icloud id
    You can use the same email address as each login. but until you agree to each terms and conditions you wont be able to access the services.
    This is usually done the first time you access each service and sign in with your apple id.
    As to iTunes you need a little extra as they will request to confirm details as to address, etc, with the payment information they can confirm you are actually in that country you are trying to purchase from.
    Once you have added the credit card details, you can go back in a set payment method to none and remove the credit card details once you have activated the itunes on your apple id.
    Basically this message you are getting is just ADDING the feature of iTunes store to your apple id, and confirms you have not got a iTunes id yet.

  • When I try to sign in to my account on iTunes, I get the above error message, along with "Please review your account information". When I then click on "Review"

    When I try to sign in to my account on iTunes, I get the above error message, along with"Please review your account information".
    When I then click on "Review", it comesup with the page "Create an Apple Account for the iTunes Store"and presents me with the Terms Of Service.
    When I click "Agree",  It is disabled.
    Can anyone tell me why this has happened and how to resolve it?
    Please, please, please help.

    Count me in as having the same problem. I have been leaving messages in the iTunes for Mac forum where others in there also are having problems. I have been unable to access my account since 11/7/2007. E-mails with Apple have not worked and now I haven't heard back from them since Saturday. I have tried both on a Mac and Windows machine and keep receiving the same error message that:
    This Apple ID has not yet been used with iTunes.
    I last purchased music with this account on 10/30/2007. I even tried resetting my password, changing my account info, trying on a computer with iTunes 7.4, etc. I have money in that account and 150 songs and 5-6 tv shows that I cannot access. I also just purchased a new computer and cannot sync my iPod with this computer since these songs will not transfer.
    Apple really needs a phone number for technical support. Having to deal with e-mails back and forth (and waiting a day for each e-mail) is not a good business practice. Hopefully they will have a phone number in the future.
    Either way, count me in on getting annoyed that a week later, this issue has not been fixed.

  • Creative Cloud is telling me "Unable to reach Adobe servers. Please check your firewall settings, and try again in a few minutes.

    Creative Cloud is telling me "Unable to reach Adobe servers. Please check your firewall settings, and try again in a few minutes.
    What do I do to access the cloud? I have checked my firewall settings to allow for me to be able to use adobe cloud. Any Suggestions?

    Try a different browser and/or turn your firewall off to download
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Error when Submitting book - Please review your billing information

    I get the following error message when I submit a book for printing:
    Your account information has changed.
    Please review your billing information and approve it.
    I went here to review my order status but I did not have any orders:
    https://mercury.apple.com/WebObjects/OrderStatus
    I reviewed my billing information on the web located here:
    https://myinfo.apple.com
    And it is correct
    Any thoughts?

    I got the following information from apple - following this fixed my problem:
    1. Visit http://myinfo.apple.com and choose your country and preferred language from the pop-up menus. Then log in using your Apple ID and password.
    2. Click Address Book on the left. If you see any blank addresses under Shipping Addresses, make the visible address your default, and then delete the blank address.
    3. Click Phone Numbers on the left, delete all phone numbers, and save your changes. When you successfully place an iPhoto order, your phone number will be copied from iPhoto to My Info.
    4. Check Apple ID, Email, Subscriptions, and Contact Prefs and make any necessary corrections. Save your changes.
    5. Now open iPhoto.
    6. Select a photo and choose Order Prints from the Share menu.
    7. Click Account Info and sign in using your Apple ID and password. If you are unable to log in, try changing your password in My Info using the directions in step 1 above. Then return to step 6 and try again.
    8. Click Edit Shipping and choose Add New Address from the Address pop-up menu.
    9. Add the desired address into the fields, making sure to create a new label, such as "Home." Then select "Make this my default address" and click OK.
    10. Now delete any other addresses listed by selecting them and clicking the Delete This Address button. You should now have only your default "Home" shipping address left.
    You should now be able to submit your iPhoto order successfully. If the difficulty persists, please reply to give me the exact error message you see. I will do my best to help you resolve the issue. Thank you for your patience.

  • Trying to sign in to itunes store via windows xp...get to id and pwd and then it says "This Apple ID has not yet been used with the itunes store...please review acct. info"  Well how can I use it if you don't let me log in!?

    Tyring to sign in to iTunes store viz windows XP...I get to entering my ID and PWD and then the message pops up "This Apple ID has not yet been used with the iTunes store...please review acct. info."  HELP!  I have cleared DNS, checked proper date & time and deleted SC folder from programs like support suggested--all to no avail.

    The first part of the error is true - I haven't used the AppleID with the iTunes store. 
    Try here >  Using an existing Apple ID with the iTunes Store and Mac App Store
    received the upgrade code using this same AppleID, so I don't think I can use a different AppleID.
    Correct.
    It's clearly not a cookie issue..
    As for cookies. Quit the App Store. Now open the Finder. From the Finder menu bar click Go > Go to Folder.
    Type this exactly as you see it here:   ~/Library/Cookies
    Click Go the move the   com.apple.appstore.plist   file from the Cookies folder to the Trash.
    Relaunch the App Store.

  • TS1424 my Apple id is not working on itunes store....itunes reply (please review your account information.....) And Demanding Credit Card Information.....But I dnt Have Any Credit Card......

    my Apple id is not working on itunes store....itunes reply (please review your account information.....) And Demanding Credit Card Information.....But I dnt Have Any Credit Card......

    For the CC type, select None and verify your name and address.

  • N unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    some one can help me please
    i have no idea what i must to do.
    an unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    The Exception Handler gave all the info that you need. No need to print the whole stack trace.
    The exception handler says
    Exception Details: java.lang.IllegalArgumentException
    TABLE1.NAME
    Look in the session bean (assuming that is where your underlying rowset is). Look in the _init() method for statements similar to the following:
    personRowSet.setCommand("SELECT * FROM TRAVEL.PERSON");
    personRowSet.setTableName("PERSON");
    What do you have?

  • A report question please review !!!!!!!!!!!!!!!!!!!!!!

    Hi
    I am wring a report and I have a question about few things.
    I am selecting some data from different tables, some of the
    columns are: days_past_due (which is a calculated column, it's =
    to sysdate -due_date) and I have another column balance_due, Now
    I want to have few other columns like (31-60,60-90,90-180) as
    buckets and these should be calculated also like for example if
    it's for 1-30 days I want to sum up the balance_due columns if
    the days_past_due is bettwen 1-30 , Please review if you can help
    alpha

    Please do the following:
    1. Add two columns "Account Name" and "- Account Document"."Document Name" to the report.
    2. Create the following formula on "Account Name" column
    CASE WHEN ("- Account Document"."Document Name" LIKE '%string1%' AND "- Account Document"."Document Name" LIKE '%string2%' )THEN "Account Name" ELSE '0' END
    3. Put a filter on "Account Name" != 0 (Filters out all the Accounts which do not have the Document Name like in string1 and string2.
    Hope this helps and please mark it if it does.

  • New Package: Arno's iptables firewall scripts

    I made a PKGBUILD for Arno IPTABLES firewall script. This script has protected my home network for long time and I realized that some other Archers would also like to use it. Also, syslog-ng.conf example is included to get iptable logs into their own log file.
    Script has clear, easy and well commented configuration file. Nice list of
    Features
    Very secure stateful filtering firewall
    Both kernel 2.4 & 2.6 support
    It can be used for both single- and multi(eg. dual)-homed boxes
    Masquerading (NAT) and SNAT support
    Multiple external (internet) interfaces
    Support multiroute NAT & SNAT (load balancing over multiple (internet) interfaces)
    Port forwarding (NAT)
    Support MAC address filtering
    Support for DSL/ADSL modems
    Support for PPPoE, PPPoA and bridging modem setups
    Support for static and ISP assigned (DHCP) IPs
    Support for (transparent) proxies
    Full support for DMZ's and DMZ-2-LAN forwarding. You can also use it to isolate your eg. wireless LAN.
    (Nmap)(stealth) portscan detection
    Protection against SYN-flooding (DoS attacks)
    Protection against ICMP-flooding (DoS attacks)
    Extensive user-definable logging with rate limiting to prevent log flooding
    Includes options to optimize your throughput
    User definable open ports, closed ports, trusted hosts, blocked hosts etc.
    Log & protection options are both highly customizable
    Support for custom iptables rules in a seperate file
    It can be used with chkconfig runlevel system (eg. RedHat/Fedora)
    Main focus on TCP/UDP/ICMP but additional support for *ALL* IP protocols
    It works with Freeswan IPSEC (VPN) & SSH Sentinel (http://www.freeswan.org) (+virtual IP's)
    It works with PoPTop PPTP (http://www.poptop.org)
    It works with UPnP
    DRDOS protection/detection (experimental)
    It's easy to configure
    And much more...
    (edit) PKGBUILD is in the AUR.
    This is my first package ever so tell me what to fix. I will put this to AUR if supported and this really works.

    1c3d0g wrote:
    Is this similar to QuickTables?
    http://qtables.radom.org/
    Arno's iptables has a config file that will be edited as needed and script reads the config file everytime it is executed.
    I can put this pkgbuild to AUR. The init script is not Arch like. I decided to use Arno's script as is in /etc/rc.d/ because I want to see what happens. I could do a Arch type of init script that executes the firewall script arch way.
    What do you think?

Maybe you are looking for