ارتباط تلفنی مشترکان ۲ مرکز مخابراتی دچار اختلال می شود

به نقل از سایت اخبار فناوری اطلاعات و ارتباطات ، فن آوری های نوین :    

به گزارش خبرنگار مهر، به دلیل توسعه شبکه کابل و عملیات کابل برگردان در مراکز مخابراتی پاسداران و شهید حق شناس، ارتباط مشترکان این مراکز با اختلال چند روزه روبرو است.

با اجرای این عملیات که از روز گذشته آغاز شده، ارتباط تلفنی مشترکین در مرکز مخابرات پاسداران با پیش شماره های ۲۲۵۴ الی ۲۲۵۹، ۲۶۶۵، ۲۲۷۶ الی ۲۲۷۹ در محدوده بنی فاطمه، مجید افشاری و گلستان ۳ تا ۵ حداکثر تا روز ۴ شنبه ۲۱ آذرماه با اختلال همراه است. 

درهمین حال در مرکز مخابرات شهید حق  شناس نیز اجرای عملیات مذکور از امروز آغاز شده و ارتباط تلفنی مشترکان این مرکز با پیش شماره های ۴۴۷۰ الی ۴۴۷۶ در محدوده اتوبان تهران – کرج، بلوار دهکده المپیک، بلوار سرو، آزاد شهر به مدت ۳ روز آینده دچار اختلال می شود.

94
0 0

لینک های مفید

طراحی لوگو دراصفهان

بانک اطلاعات مشاغل رایگان
لوازم یدکی جک JAC

کتاب های ادبیات آمریکای لاتین

سنگ چینی

کرم گریم


$(window).load(function () { 'use strict'; function activeStickyKit() { $('[data-sticky_column]').stick_in_parent({ parent: '[data-sticky_parent]' }); // bootstrap col position $('[data-sticky_column]') .on('sticky_kit:bottom', function (e) { $(this).parent().css('position', 'static'); }) .on('sticky_kit:unbottom', function (e) { $(this).parent().css('position', 'relative'); }); }; activeStickyKit(); function detachStickyKit() { $('[data-sticky_column]').trigger("sticky_kit:detach"); }; var screen = 768; var windowHeight, windowWidth; windowWidth = $(window).width(); if ((windowWidth < screen)) { detachStickyKit(); } else { activeStickyKit(); } // windowSize // window resize function windowSize() { windowHeight = window.innerHeight ? window.innerHeight : $(window).height(); windowWidth = window.innerWidth ? window.innerWidth : $(window).width(); } windowSize(); // Returns a function, that, as long as it continues to be invoked, will not // be triggered. The function will be called after it stops being called for // N milliseconds. If `immediate` is passed, trigger the function on the // leading edge, instead of the trailing. function debounce(func, wait, immediate) { var timeout; return function () { var context = this, args = arguments; var later = function () { timeout = null; if (!immediate) func.apply(context, args); }; var callNow = immediate && !timeout; clearTimeout(timeout); timeout = setTimeout(later, wait); if (callNow) func.apply(context, args); }; }; $(window).resize(debounce(function () { windowSize(); $(document.body).trigger("sticky_kit:recalc"); if (windowWidth < screen) { detachStickyKit(); } else { activeStickyKit(); } }, 250)); });