Test cases for Ethernet switches
I’m working on a project which is on the Ethernet switch. I’m totally new to it. Could you help me with access control lists (ACL), Quality of Service (QoS), and packet filtering concepts in detail? I find it difficult writing test cases for it.

Answer Question   |  February 27, 2008  9:20 PM
Access Control List, ACL, Ethernet switching, Networking, Packet filtering, QoS, Quality of Service, Switches
asked by:
1,545 pts.

Can I encrypt BlackBerry email with the certificate used in Outlook?
We are trying to implement an email encryption solution for our users. Our environment is Exchange Server and Microsoft Outlook 2003. Top management at our company use BlackBerry. We chose the VeriSign Digital IDs certificate to encrypt and sign email with S/MIME in Outlook 2003. We would like to enable email encryption on the BlackBerry [...]

Answer Question   |  February 25, 2008  6:00 PM
BlackBerry email, Digital IDs, Email encryption, Exchange Server, Outlook, Outlook 2003, S/MIME
580 pts.

Cisco pix501 VPN at home.
A question submitted on SearchNetworking.com I just got IPSEC passthru working. IPSEC passthru is the most important feature because from home I have to VPN back to ASA at work. I would also like when I’m at work to VPN back to my home (VPN the other way that terminates on my pix 501) This [...]

Answer Question   |  February 27, 2008  5:35 PM
Cisco, Cisco PIX, Firewalls, IPsec, PIX, VPN
asked by:
16,755 pts.

MAC Addresses
How can I locate a stolen desk top being used on the internet if I have got the MAC Address for the onboard network adaptor card

Answer Question   |  February 27, 2008  4:10 PM
Device security policy, Internet, MAC address, Network, Security
asked by:
10 pts.

My current network Challenge
Hi everyone, The following is my current task. 1) set up a network with 6 computers 2) must have file and printer sharing 3) internet access Things to consider 1) SECURITY – some computers will be laptops (wireless) and some desktop (hardwired) 2) Connectivity – at least one of these computer will be a mac [...]

Answer Question   |  February 26, 2008  3:06 PM
Network, Network security, Security
asked by:
5 pts.

How to NAT a VPN pool address
I have a PIX 506e IOS 6.3(5) and I want to make a VPN pool address available to inbound traffic. The scenario is that I have a wireless device which is behind a firewall from my provider. I have a VPN set up to allow the device to connect and it is assigned an address [...]

Answer Question   |  February 25, 2008  10:54 PM
Firewalls, PIX, VPN
asked by:
85 pts.

Unsuccesfully securing an automated secure transmittal of data through FTPS protocol
We have been unsuccesful in securing a data connection with our vendor’s FTP server. The failure is always during establishment of the data connection when SSL is enabled. On our end, we’ve tried sending test files through two different server sources, and still were unable to connect with our vendor’s ftp server. We can successfully [...]

Answer Question   |  February 22, 2008  5:22 PM
Data transfer, FTP, SSL
asked by:
KMW
5 pts.

cannot auth win 2003 domain with squid ldap_auth
Hi, I was trying to setup squid on fc7. Version 2.6.STABLE16. I have a domain setup in win 2003 server with about 20 users (abcgroup.local), the IP address of the domain controller being 192.168.10.3. I have a group(abcgroup), which has 3 companys.(Cmp1, Cmp2, Cmp3) Now, I am setting all this up assuming I could use [...]

Answer Question   |  February 22, 2008  12:59 AM
Fedora Linux, LDAP, Proxy servers, Squid, Windows Server 2003
asked by:
140 pts.

Change copier FTP anonymous access
Retina network security scanner shows FTP anonymous write access as a vulnerability. I only need FTP anonymous for a networked KonicaMinolta Di551 copier used for scanning documents to PDF file format into a folder on the server. Does anyone have any idea if a copier can scan to a network folder without using the FTP [...]

Answer Question   |  February 23, 2008  9:00 PM
FTP, IP networks, Network, Scanning, Security
asked by:
15 pts.

Desktop user appears to have logged in after hours but has no remote access
A user (xx) came in to work to find their logon screen displaying another user name (yy) which would indicate that yy had successfully logged on using that desktop. However, neither xx nor yy were present at 11:00pm when the logon took place (as listed in the event viewer log), as the office is closed. [...]

Answer Question   |  October 30, 2011  6:48 PM
Event Viewer, Spyware
asked by:
5 pts.

DDM Security – Where Are Security Parms Stored For updating Files on another box without a user profile.
Currently on our development Iseries, our programs that use DDM have the ability to update files on production even though our development user profiles do not exist on the production box. Where on the Iseries is the information/parameters stored that allow our development box to do this? In production, if the user tries to update [...]

Answer Question   |  March 12, 2010  5:21 PM
DDM Security, iSeries, Security
asked by:
15 pts.

Trend Micro Exams
Hey guys going to do the Trend Micro Exams they sound pretty easy ,but the foundation exam seems a bit strange any ideas ??

Answer Question   |  February 21, 2008  6:15 AM
Career development, Certifications, Trend Micro
asked by:
5 pts.

Is there a way to find out what user on the SBS 2003 Server deleted a folder in a share? User activity logs?
Is there a way to find out what user on the SBS 2003 Server deleted a folder in a share? Security logs?? Activity Logs? Thank you, Cory

Answer Question   |  February 22, 2008  5:44 AM
Activity logs, SBS 2003, Security logs
asked by:
5 pts.

computer based and user based policy implemented together?
computer based and user based policy implemented together? I am setting up a squid proxy server. To deploy it I want to setup computers such that I can have any user log into a particular workstation and have limited access but when he connects to another workstation(that does not have any group policy on), he [...]

Answer Question   |  February 22, 2008  7:39 PM
Group Policy, Internet Explorer, Proxy, User authentication
asked by:
140 pts.

Block Net.exe and *.xls Files
AOA Dear all, i am using server 2003. I have made different OU in our domain. Now i want to block net.exe and other program like *.xls,*.doc files. The purpose of these files is that i want to block net send command centerally. please tell me complete procedure how i am block these files extension [...]

Answer Question   |  March 5, 2008  9:26 AM
Active Directory, Organizational Unit, OU, Security, Windows Server 2003
asked by:
125 pts.

How to Encrypt a Column in sql server 2000/2005
How to Encrypt a Column in sql server 2000/2005 i.e i need something like this @OriginalValue = ‘Original Value’ @EncryptedValue @Key int set @Key = ’123#$2hj$dfgh*67kjugd45j45s4agd’ –any unique key value for encrypting and decrypting set @EncryptedValue = fn_Encrypt(@OriginalValue, @Key) insert into table_Master (name_Master) values (@EncryptedValue) for selecting select fn_Decrypt(name_Master, @Key) from table_Master how to do [...]

Answer Question   |  May 8, 2012  6:13 AM
Encryption, SQL Server
asked by:
5 pts.

The executable has changed since the last time you used
Hello All A user has recently start having errors when she is in outlook and use MSword. The errors are for Word.exe or Outlook.exe and sometimes Ie.exe Note:The Symantec Antivirus EndPoint dose not find any virus. Word:File Version: 11.0.8202.0 File Description: Microsoft Office Word File Path: C:Program FilesMicrosoft OfficeOFFICE11WINWORD.EXE Digital Signature: Microsoft Corporation Process ID: [...]

Answer Question   |  June 2, 2008  8:17 PM
Internet Explorer, Microsoft Word, Outlook, Viruses
asked by:
35 pts.

i have a access is denied popup when i try to delete a file that i know has a virus in it.
how do i get rid of this file? i run windows xp home and in one of my backup files from when i reformatted is a file that on my virusscans continues to come up as having a trojan in it…but even tho it is just a backup file it will not let me delete [...]

Answer Question   |  February 18, 2008  1:39 AM
Antivirus, Microsoft Windows, Viruses
asked by:
65 pts.

Managing Orphaned SIDs on AD objects
We discovered that many distribution groups have had individual permissions assigned using the security tab. Primarily this is because the ‘managedBy’ field allows only 1 manager to control membership of the group. Unfortunately when a user is removed from AD the SID is left behind on the various objects the user was granted permission to. [...]

Answer Question   |  January 26, 2011  5:09 PM
Developers, Development, Exchange security, Security, Windows
asked by:
15 pts.

Check AS400 password in PC environment
I have a VBasic input program on PC which data will eventually be inserted into a physical on AS400. I would like to make the users to login this PC program. 1) Is it possible to verify their IDs and passwords against those on AS400 ? If possible, how am I going to do that [...]

Answer Question   |  February 14, 2008  9:52 AM
AS/400, AS/400 security, Password authentication
asked by:
5 pts.