Set IP address / mask / gateway / dns / domain
Windows 7:
-
Set IP to
192.168.<workstation>.2 -
Set gateway and DNS as Windows 2012 server.
-
Change domain to
networkafter setting IP on Windows 2012
| #!/bin/sh | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # Set the colours you can use | |
| black='\033[0;30m' | |
| white='\033[0;37m' | |
| red='\033[0;31m' |
Set IP address / mask / gateway / dns / domain
Windows 7:
Set IP to 192.168.<workstation>.2
Set gateway and DNS as Windows 2012 server.
Change domain to network after setting IP on Windows 2012
Set firewall
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
Start apache and mysql
1 - Discover hosts (IP Addresses) on a network
nmap -sP 192.168.1.0/24
2 - Determine Operating Systems of the hosts
| If( | |
| drpOperating.Selected.Value = "Building Solutions", | |
| Filter( | |
| Choices([@'ERPIT Register'].'Functional Area'), | |
| Value = "General" || Value = "Sales & Marketing" || Value = "Operations VIC" || Value = "Operations SA" || Value = "Operations WA" ||Value = "Operations QLD" || Value = "Operations NSW" || Value = "HR" || Value = "HSEQ" || Value = "Design" | |
| ), | |
| If( | |
| drpOperating.Selected.Value = "RV Solutions", | |
| Filter( | |
| Choices([@'ERPIT Register'].'Functional Area'), |
| { | |
| "openapi": "3.0.1", | |
| "info": { | |
| "title": "Business Central", | |
| "description": "", | |
| "version": "beta" | |
| }, | |
| "servers": [{ | |
| "url": "https://fleetwood-api-management.azure-api.net/beta" | |
| }], |
| { | |
| "openapi": "3.0.3", | |
| "info": { | |
| "title": "WhoisJson API - Documentation", | |
| "description": "RESTful API for domain and network information lookups. Provides WHOIS data, DNS records, SSL certificate details, and domain availability checks.\n\n### Available Operations\n- **WHOIS Lookup**: Retrieve domain registration information including owner contacts, registrar details, and status\n- **Reverse WHOIS**: Get domain information from IP addresses\n- **DNS Lookup**: Query DNS records (A, AAAA, MX, NS, SOA) for domains\n- **SSL Certificate Check**: Validate and retrieve SSL certificate details\n- **Domain Availability**: Check if domains are available for registration\n- **Random WHOIS**: Retrieve sample WHOIS records from the database\n\n### Authentication\nRequires API key authentication via Authorization header: `TOKEN=<YOUR_API_KEY>`\n\n### Response Formats\nSupports both JSON and XML response formats. JSON is the default format.\n\n### Rate Limiting\nAPI usage is tracked and limited. Remaining reque |