Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: nymus
  • Content: Threads
  • Order by date
  1. nymus

    NIM Backup with Firewall

    Hi- I'm using NIM functionality (AIX5.3) to backup all AIX Servers but some Servers are in the DmZ and many tcpip ports (nfs, ping,etc...) should be open and... it's really a security risks! As anyone experience about NIM Backup through Firewall? Which tcpip ports should be open? Could we...
  2. nymus

    awk's problem into crontab...

    Could someone explain my problem? I've the following script... #! /bin/ksh ... vmquery -m $MediaID | awk ' BEGIN {FS=": " getline expdate <"ExpDate.txt" } $1 ~ /media ID/ {MediaNumber = $NF} ... $1 ~ /number of mounts/ { "date +%Y"|getline YearToday Year4 = YearToday - 4 if ($NF > 2000)...
  3. nymus

    variable in awk....

    Hi, In a script I take the variable NF and print it: BEGIN {FS=": "} ... $1 ~ /first mount/ {print $NF} ... result: Tue Jul 23 14:26:37 DFT 2002 Now I want to put the last field of $NF (2002) in a variable: $1 ~ /first mount/ {First="$NF|print $NF";print First} But I don't see how? Has...
  4. nymus

    How integrate AWK in KSH Shell

    Hi all Can we integrates a AWK script in a KSH script? How do we make? #! /bin/ksh ... list_media() { for MediaNr in $(vmquery -a | grep "media" |awk 'BEGIN{FS=": "};{print $NF}') do # here is the problem !!! awk 'BEGIN { FS=": " } { $1 ~ /mount/ {print $NF} >$FirstMount...
  5. nymus

    Problem with XWindows

    Hi alls I'm using a AIX5.1 machine for security test and I've the following problem. I put login and password in CDE then the following message appears : "Starting the Common Desktop Environment". After a few time comes a windows "ToolTalk Message Server Could Not Be Started" with...
  6. nymus

    Analyse with ethereal

    I'm using ethereal to analyse the network. There're too many TCP Bad checksum 1. between my PC and unix servers (checksum: 0x6660 [incorrect, should be 0xa6e2] 2. between my PC and other servers (windows, novell) checksum: 0x6644 [incorrect, should be 0xf50a] There're too many NBNS and...

Part and Inventory Search

Back
Top