Answer and Explanation:
The requirements to be considered while determining the firewalls' features and locations are:
- The reason so as to why to implement a firewall
- Traffic inspection type required to be accomplished.
- Best OS, i.e., Operating System suitable for the work need.
- The method to fir firewall into the topology (network).
- Making decision whether the firm is more suitable for software solution or application.
Some of the importants steps to be taken for the firewalls to remain effective:-
-
Use of strong password.
- according to the usage, tweak the settings of the firewall.
- Enable auto update for firewall.
- Maintain consistency in settings throughout the network.
- addition of multiple layers to the security and computer system.
- Application of encryption (128 bit WEP).
- Analysis of the traffic both outbound and inbound and taking appropriate measures.
- Always check for leaks and ports.
Answer:
IP's allow for anyone to have direct connection to the Server including attackers, I'd say that this is false primarily because setting up a domain being too "hard" isn't a reason to cop out on security
Explanation:
The SOA is the specific record type found in every zone and contains information that identifies the sever primarily responsible for the zone as well as some operational properties for the zone.
Explanation:
The Start of Authority Records (SOA) has the following information they are
Serial Number: This number is used to find when zonal information should be replicated.
Responsible person: The Email address of a person is responsible for managing the zone.
Refresh Interval: It specifies how often a secondary DNS server tries to renew its zone information.
Retry Interval: It specifies the amount of time a secondary server waits before retrying the zone information has failed.
Expires After: IT specifies the amount of time before a secondary server considers its zone data if it can't contact with the primary server.
Minimum TTL: It specifies the default TTL value for a zone data when a TTL is not supplied.
Answer:
- #include <iostream>
- using namespace std;
- int main() {
- int number =5;
- if (number>=0&& number <=100){
- cout<<"passed.\n";
- }
- else{
- cout<<"failed.\n";
- }
- return 0;
- }
Explanation:
There where multiple errors in the code given in the questions
Line 1: Missing <iostream>
Line 5: The comparison operator was wrong correction is highlighted
Line 12 Missing closing brace for the main function
All the errors have been fixed and the code above compiles