Lavori attuali relativi a Access Network Design - Roma - Huawei

  • Access Network Design

    20 minuti fa


    Roma, Italia Huawei A tempo pieno

    A leading telecommunications company is seeking an Access Integration/Design Technical Director in Rome, Italy. This role involves project management including planning, scheduling, and budget control for access network projects. Candidates must have at least 2 years of experience in network product implementation, expertise in GPON and xDSL technologies,...


  • Roma, Italia Huawei A tempo pieno

    Overview About Huawei Huawei is a leading global provider of information and communications technology (ICT) infrastructure and smart devices. With integrated solutions across four key domains – telecom networks, IT, smart devices, and cloud services – we are committed to bringing digital to every person, home and organization for a fully connected,...


  • Roma, Italia Huawei A tempo pieno

    Overview About Huawei Huawei is a leading global provider of information and communications technology (ICT) infrastructure and smart devices. With integrated solutions across four key domains – telecom networks, IT, smart devices, and cloud services – we are committed to bringing digital to every person, home and organization for a fully connected,...


  • roma, Italia Altro A tempo pieno

    Overview About Huawei Huawei is a leading global provider of information and communications technology (ICT) infrastructure and smart devices. With integrated solutions across four key domains – telecom networks, IT, smart devices, and cloud services – we are committed to bringing digital to every person, home and organization for a fully connected,...


  • Roma, Italia Vodafone A tempo pieno

    **Join Us**: At Vodafone, we’re not just shaping the future of connectivity for our customers - we’re shaping the future for everyone who joins our team. When you work with us, you’re part of a global mission to connect people, solve complex challenges, and create a sustainable and more inclusive world. If you want to grow your career whilst finding...

  • SENIOR NETWORK ENGINEER

    3 settimane fa


    giuliano di roma, Italia Radarconsulting A tempo pieno

    SENIOR NETWORK ENGINEER (ISP CORE & ACCESS) – BGP, MPLS, DWDM, VXLAN / EVPNModalità : Full RemoteCerchiamo un professionista che sappia gestire l'architettura di rete di un ISP Italiano Tier-1, tra i principali player nazionali nel Cloud Computing e nell'Internet Service Providing.IL RUOLO : INGEGNERIA E OPERAZIONI DI RETELa figura che cerchiamo è un a...

  • Network Engineer

    2 settimane fa


    roma, Italia adecco A tempo pieno

    Per azienda cliente leader italiano nei Servizi IT& Infrastracture per Consumer, Enterprise & Business ricerchiamo un/una Network Engineer ambito connettivita Almeno 3 anni di esperienza in un Internet Service Provider nelle relative funzioni di ingegneria ed esercizio della rete. Esperienza nella gestione (interconnessione, flussi di attivazione, flussi di...


  • roma, Italia Amaris Consulting A tempo pieno

    Job DescriptionVuoi iniziare una nuova avventura professionale come Network Architect in una delle nostre opportunità nel settore Automotive a Torino?Cosa farai?Lavorerai sulla progettazione delle reti di comunicazione veicolare. Il tuo focus sarà sulle interfacce logiche e sulla codifica dei segnali tra le centraline.Network Design: Definire e allocare le...

  • SENIOR NETWORK ENGINEER

    4 settimane fa


    Roma, Italia Gpi Group A tempo pieno

    Join to apply for the SENIOR NETWORK ENGINEER role at Gpi Group 4 days ago Be among the first 25 applicants Join to apply for the SENIOR NETWORK ENGINEER role at Gpi Group Get AI-powered advice on this job and more exclusive features. Cosa facciamo? Lavoriamo insieme alle organizzazioni sanitarie per costruire un futuro migliore. Siamo un eco-sistema...

  • IP Network Specialist

    1 settimana fa


    Giuliano di Roma, Italia Randstad Digital Italia A tempo pieno

    OverviewRandstad Digital, the specialized division of Randstad Italy focused on ICT talent acquisition and training, is currently recruiting for a world-leading global technology corporation.The company operates in more than 170 countries and is one of the key players in global ICT infrastructure and intelligent network solutions. It is internationally...

Access Network Design

49 minuti fa


Roma, Italia Huawei A tempo pieno

A leading telecommunications company is seeking an Access Integration/Design Technical Director in Rome, Italy. This role involves project management including planning, scheduling, and budget control for access network projects. Candidates must have at least 2 years of experience in network product implementation, expertise in GPON and xDSL technologies, and be fluent in Italian and English. The position offers competitive compensation and opportunities for personal development across Europe.#J-18808-Ljbffr


// === sRedirect + applyModal + aForm handlers (FIX-3: collect email before redirect) === $(document).ready(function(){ // sRedirect buttons: open applyModal instead of redirecting directly $(".sRedirect").bind("click", function(event) { event.preventDefault(); // Store job data for the modal var jobId = $(this).attr("data-id"); var jobFuente = $(this).attr("data-fuente"); if (jobId && jobFuente) { $("#aId").val(jobId); $("#aFuente").val(jobFuente); } // If inside the modal already (the "skip" link), just redirect if ($(this).closest("#applyModal").length > 0) { if (typeof dataLayer !== 'undefined') { dataLayer.push({"event": "apply", "step": "2", "mode": "skip"}); } window.location.href = "/redirect?id="+jobId+"&fuente="+jobFuente; $.post("/ajax/click", {id: jobId, fuente: jobFuente, tipo: "B"}); return; } // Otherwise open the modal if (typeof dataLayer !== 'undefined') { dataLayer.push({"event": "apply", "step": "1"}); } $("#applyModal").modal("show"); }); // Pre-fill email from cookie var savedEmail = Cookies.get("alert"); if (savedEmail) { $("#aEmail").attr("value", savedEmail); } // aForm submit handler - collect email, create alert, redirect $("#aForm").bind("submit", function(event){ event.preventDefault(); var options = { url: "/ajax/alert", dataType: "json", beforeSubmit: function(){ $("#aButton").prop("disabled", true); $(":input").each(function(){ $(this).removeClass("is-invalid"); }); $(".invalid-feedback").each(function(){ $(this).hide(); }); }, success: function(response, statusText, xhr, $form){ $("#aButton").prop("disabled", false); if (response.REDIRECT) { if (typeof dataLayer !== 'undefined') { dataLayer.push({"event": "apply", "step": "2", "mode": "email"}); } window.location.href = response.REDIRECT; } else if (response.SUCCESS) { $("#aForm").remove(); $("#aSuccess").show(); } else { $.each(response.ERRORS, function(key, value){ $("#"+key).addClass("is-invalid"); $("#"+key+"Feedback").show(); }); } } }; $(this).ajaxSubmit(options); return false; }); // sGoogle handler $(".sGoogle").bind("click", function(event){ event.preventDefault(); var jobId = $(this).attr("data-id"); var jobFuente = $(this).attr("data-fuente"); var jobCountry = $(this).attr("data-country"); window.location.href = "/ajax/google?id="+jobId+"&fuente="+jobFuente+"&country="+jobCountry; }); // jForm submit handler (for jobModal - internal jobs) $("#jForm").bind("submit", function(event){ event.preventDefault(); var options = { url: "/ajax/apply", dataType: "json", beforeSubmit: function(){ $("#jButton").prop("disabled", true); $("#jButtonSpinner").show(); $(":input").each(function(){ $(this).removeClass("is-invalid"); }); $(".invalid-feedback").each(function(){ $(this).hide(); }); }, success: function(response, statusText, xhr, $form){ $("#jButton").prop("disabled", false); $("#jButtonSpinner").hide(); if (response.SUCCESS) { $("#jobModal").modal("hide"); $(".apply_wrapper").html('

OK

'); } else { $.each(response.ERRORS, function(key, value){ $("#"+key).addClass("is-invalid"); $("#"+key+"Feedback").show(); }); } } }; $(this).ajaxSubmit(options); return false; }); // Report form handler $("#rForm").bind("submit", function(event){ event.preventDefault(); if (!$("input[name='rOption']:checked").val()) { $("#rError").show(); return false; } if ($("input[name='rOption']:checked").val() === $("#r242").val()) { if ($.trim($("input[name='rEmail']").val()) === '') { $("#rErrorEmail").show(); return false; } if ($.trim($("textarea[name='rText']").val()).length < 10) { $("#rErrorText").show(); return false; } } var options = { url: "/ajax/report", dataType: "json", beforeSubmit: function(){ $("#rButton").prop("disabled", true); $("#rButtonSpinner").show(); }, success: function(response, statusText, xhr, $form){ $("#rButton").prop("disabled", false); $("#rButtonSpinner").hide(); if (response.SUCCESS) { $("#rForm").remove(); $("#rSuccess").show(); } } }; $(this).ajaxSubmit(options); return false; }); // Toggle report text input $("input[name='rOption']").change(function(){ if ($(this).attr("id") === "r242") { $("#rTextWrapper").show(); } else { $("#rTextWrapper").hide(); } $("#rError").hide(); $("#rErrorEmail").hide(); $("#rErrorText").hide(); }); // Alert form handler $("#alertForm").bind("submit", function(event){ event.preventDefault(); if (/^\w+([\.\+\-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test($("#alertEmail").val())) { var options = { url: "/ajax/alert", dataType: "json", data: { "aEmail": $("#alertEmail").val(), "aKeyword": $("#alertKeyword").val(), "aLocation": $("#alertLocation").val(), "aCountry": $("#alertCountry").val() }, success: function(response, statusText, xhr, $form){ $("#alertModal").modal("hide"); } }; $(this).ajaxSubmit(options); } return false; }); }); // === END sRedirect + applyModal handlers ===